changed some minor stuff :)

This commit is contained in:
valentijn
2024-01-19 12:10:11 +01:00
parent 1c28a1fa9e
commit 4f86aa8cb2

View File

@@ -49,10 +49,10 @@ app.get("/execute", (req, res)=> {
commands.help(req, res); commands.help(req, res);
} }
else { else {
res.json({"response": "invalid command"}) res.json({"response": "Unknown command, please try again later, or run 'help' for a list of commands"});
} }
}) })
app.listen(port, () => { app.listen(port, () => {
console.log(`Example app listening on port ${port}`) console.log(`Epic Terminal App listening on port ${port}`)
}) })