mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 06:44:07 +00:00
19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
import curriedLogger from "../utils/logger.js";
|
|
const logger = curriedLogger(import.meta);
|
|
|
|
import * as typedefs from "../typedefs.js";
|
|
|
|
/**
|
|
* @param {typedefs.Req} req
|
|
* @param {typedefs.Res} res
|
|
*/
|
|
export const __controller_func = async (req, res) => {
|
|
try {
|
|
|
|
} catch (error) {
|
|
res.status(500).send({ message: "Internal Server Error" });
|
|
logger.error("__controller_func", { error });
|
|
return;
|
|
}
|
|
}
|