kry008 2025-01-08 07:55:28 +01:00
parent 7df3c6aea0
commit 4f57aee30b
1 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,8 @@ api.use('/panel', apiPanel);
const apiLiczacy = require('./apiLiczacy.js');
api.use('/liczacy', apiLiczacy);
api.all('*', function(req, res) {
res.send(404, {response: "Nie znaleziono"});
});
module.exports = api;