2021-08-27 07:32:44 -05:00
|
|
|
import express from 'express'
|
2018-05-25 09:21:16 -05:00
|
|
|
|
2023-03-10 05:01:21 -06:00
|
|
|
async function activityPubResponse (promise: Promise<any>, res: express.Response) {
|
|
|
|
const data = await promise
|
|
|
|
|
2018-05-25 09:21:16 -05:00
|
|
|
return res.type('application/activity+json; charset=utf-8')
|
|
|
|
.json(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
activityPubResponse
|
|
|
|
}
|