mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-12-01 21:09:17 -06:00
11 lines
219 B
TypeScript
11 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
|
|
}
|