2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2018-05-25 16:21:16 +02:00
|
|
|
|
|
|
|
function activityPubResponse (data: any, res: express.Response) {
|
|
|
|
return res.type('application/activity+json; charset=utf-8')
|
|
|
|
.json(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
activityPubResponse
|
|
|
|
}
|