lint and format

This commit is contained in:
0d0acre 2024-09-21 02:20:34 +02:00
parent b2906f0fe9
commit be0c66110a

View file

@ -46,8 +46,8 @@ const configureRoutes = (app) => {
});
app.get("/version", (req, res) => {
const {version} = require('./package.json');
res.json({version})
const { version } = require("./package.json");
res.json({ version });
});
};