mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 06:54:07 +00:00
16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
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 };
|