Files
youtube-downloader/legacy/src/index.js
2020-06-15 22:50:08 +00:00

14 lines
229 B
JavaScript

const server = require('./server');
let config = {
serverPort: 8080,
downloadLocation: './'
};
module.exports.config = config;
module.exports.main = async () => {
await server.init();
await server.listen();
}