1
Fork 0
poke/sdk/server.js

11 lines
206 B
JavaScript
Raw Permalink Normal View History

2022-03-25 13:47:56 -04:00
const video = require("./src/video.js")
const channel = require("./src/channel.js")
const search = require("./src/search.js")
module.exports = {
search:search,
video:video,
channel:channel
2022-03-25 12:41:48 -04:00
}