10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import express from 'express'
|
|
|
|
function activityPubResponse (data: any, res: express.Response) {
|
|
return res.type('application/activity+json; charset=utf-8')
|
|
.json(data)
|
|
}
|
|
|
|
export {
|
|
activityPubResponse
|
|
}
|