Add skeleton

This commit is contained in:
2025-09-17 13:28:58 +07:00
parent 945e0083d2
commit 2c546a2ec7
3 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const { ErrorHandler } = require("../helpers/error");
// eslint-disable-next-line no-unused-vars
const unknownEndpoint = (request, response) => {
throw new ErrorHandler(401, "unknown endpoint");
};
module.exports = unknownEndpoint;