mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 09:34:07 +00:00
20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
require('dotenv').config();
|
|
|
|
const typedefs = require("../typedefs");
|
|
|
|
/**
|
|
* @param {typedefs.Req} req
|
|
* @param {typedefs.Res} res
|
|
*/
|
|
const __controller_func = async (req, res) => {
|
|
try {
|
|
|
|
} catch (error) {
|
|
console.error(error);
|
|
return res.status(500).send({ message: "Server Error. Try again." });
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
__controller_func
|
|
}; |