beatstar_api/build/pack_api.js

13 lines
284 B
JavaScript

"use strict";
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
class PackAPI {
}
exports.default = PackAPI;
_a = PackAPI;
PackAPI.getPacks = async (req, res, next) => {
return res.status(200).json({
message: "hello all packs",
});
};