mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
14 lines
173 B
TypeScript
14 lines
173 B
TypeScript
function buildRequestStub (): any {
|
|
return { }
|
|
}
|
|
|
|
function buildResponseStub (): any {
|
|
return {
|
|
locals: {}
|
|
}
|
|
}
|
|
|
|
export {
|
|
buildResponseStub,
|
|
buildRequestStub
|
|
}
|