twitch_bot/web/index.js

13 lines
294 B
JavaScript
Raw Normal View History

2023-02-04 12:56:15 +01:00
const express = require("express");
const app = express();
const port = 3000;
const { client } = require("../clients/twitch.js");
app.get("/api/v1/commands", (req, res) => {
res.json(client.commands);
});
app.listen(port, () => {
console.log(`Example app listening on port ${port}`);
});