Files
note-service-server/src/controllers/status.js
2018-08-19 17:39:55 +01:00

6 lines
122 B
JavaScript

export class StatusCodes {
static pageNotFound(req, res) {
res.status(404).end('404 Page not found');
}
}