Update server.js

This commit is contained in:
Ashley 2022-03-25 20:47:56 +03:00 committed by GitHub
parent 5698d435a7
commit ad8a6707bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}