blob: 3bbad3c47eec4d48785f0d0c0b98dfb330072929 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* Return content for embedding
* @type {import('express').RequestParamHandler}
*/
export const instance = async (req, res) => {
res.json({
'domain': 'juick.com',
'title': 'Microblogging service',
'description': 'Juick',
'version': '2.x',
'contact': {
'email': 'support@juick.com'
}
})
}
|