1
Fork 0

Update server.js

This commit is contained in:
Ashley 2022-03-25 20:47:56 +03:00 committed by GitHub
parent 68535a7321
commit 93df947858

View file

@ -1,6 +1,10 @@
module.exports = {
video:require("./src/video.js"),
channel:require("./src/channel.js")
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
}