Untitled
unknown
plain_text
3 years ago
402 B
6
Indexable
module.exports = app => { const chats = require("../controllers/fx.controller.js"); const qris = require("../controllers/qr.controller.js"); app.get("/chats", chats.chatindex); app.post("/chats", chats.create); app.post("/set/client", chats.setClient); app.post("/remove/client", chats.removeClient); app.get("/kill", chats.kill); app.get("/qr/generate", qris.generate); };
Editor is loading...