16 lines
368 B
TypeScript

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