diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2015-06-09 17:41:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2015-10-29 23:14:54 +0100 |
commit | 8c308c2bf7f658945d80be9d5880361238635f5b (patch) | |
tree | 2130ae60af58e59dab3df07a5d5cdd5174f91ae8 /routes/api/index.js | |
parent | 8cb4b4e00ee57eb98dfe1455b6d2de36fc561797 (diff) | |
download | PeerTube-8c308c2bf7f658945d80be9d5880361238635f5b.tar.gz PeerTube-8c308c2bf7f658945d80be9d5880361238635f5b.tar.zst PeerTube-8c308c2bf7f658945d80be9d5880361238635f5b.zip |
Spawn
Diffstat (limited to 'routes/api/index.js')
-rw-r--r-- | routes/api/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/routes/api/index.js b/routes/api/index.js new file mode 100644 index 000000000..9a4ec8438 --- /dev/null +++ b/routes/api/index.js | |||
@@ -0,0 +1,10 @@ | |||
1 | ;(function () { | ||
2 | 'use strict' | ||
3 | |||
4 | var api = {} | ||
5 | api.videos = require('./videos') | ||
6 | api.remoteVideos = require('./remoteVideos') | ||
7 | api.pods = require('./pods') | ||
8 | |||
9 | module.exports = api | ||
10 | })() | ||