This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/app-backend/controllers/misc.controller.js
2021-12-01 05:27:33 +01:00

7 lines
246 B
JavaScript

const {sendMessage} = require ("../config/response.config");
const interests = require("../config/video.categories.config");
// Get all interests available
exports.getInterests = (req, res) => {
return sendMessage(res, 51, interests, null)
};