mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 13:44:06 +00:00
22 lines
363 B
JavaScript
22 lines
363 B
JavaScript
const logger = require("../utils/logger")(module);
|
|
|
|
const typedefs = require("../typedefs");
|
|
|
|
/**
|
|
* @param {typedefs.Req} req
|
|
* @param {typedefs.Res} res
|
|
*/
|
|
const __controller_func = async (req, res) => {
|
|
try {
|
|
|
|
} catch (error) {
|
|
res.sendStatus(500);
|
|
logger.error("__controller_func", { error });
|
|
return;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
__controller_func
|
|
};
|