import express from 'express' export default function webserver() { const app = express() app.get('/', function (req, res) { res.send( '
This is the monitoring server for the Vinci discord bot!
If you see this, the bot is up and running.
' ); }); app.listen(process.env.PORT || 7272, () => console.log('The webserver is listening') ); }