package (and their typing) updates

This commit is contained in:
2025-05-31 22:02:29 -07:00
parent 5e4396031e
commit 935a18f2cc
11 changed files with 485 additions and 653 deletions

View File

@@ -4,11 +4,11 @@ import logger from "../utils/logger.ts";
const __controller_func: RequestHandler = async (req, res) => {
try {
return null;
return;
} catch (error) {
res.status(500).send({ message: "Internal Server Error" });
logger.error("__controller_func", { error });
return null;
return;
}
};