fix endpoints not working

This commit is contained in:
Fran Jurmanović
2023-10-03 00:42:23 +02:00
parent fb98df8f98
commit aea2acbdf8
4 changed files with 18 additions and 16 deletions

View File

@@ -47,7 +47,7 @@ app.get(
})
);
app.get("version", (_, res) => {
app.get("/version", (_, res) => {
res.send(APP_VERSION);
});