BotWeb / index.js
FikXzModzDeveloper
deploy awal
c20600f
Raw
History Blame Contribute Delete
498 Bytes
const { app, Port } = require('./app')
const banner = require('./src/source/banner')
app.listen(Port, '0.0.0.0', () => {
console.log(`
${banner}
=================================================
๐Ÿš€ Server Running at: http://0.0.0.0:${Port}
=================================================
`)
})
process.on("uncaughtException", (err) => console.error(`
=================================================
Uncaught Exception:
${err}
=================================================
`))