]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/utils/miscs/stubs.ts
Merge branch 'release/v1.2.0'
[github/Chocobozzz/PeerTube.git] / shared / utils / miscs / stubs.ts
1 function buildRequestStub (): any {
2 return { }
3 }
4
5 function buildResponseStub (): any {
6 return {
7 locals: {}
8 }
9 }
10
11 export {
12 buildResponseStub,
13 buildRequestStub
14 }