import type { RequestHandler } from "express"; import logger from "../utils/logger.ts"; const __controller_func: RequestHandler = async (req, res) => { try { return; } catch (error) { res.status(500).send({ message: "Internal Server Error" }); logger.error("__controller_func", { error }); return; } }; export { __controller_func };