Merge branch 'release/2.2.0' into develop
[oweals/peertube.git] / shared / extra-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 }