diff options
Diffstat (limited to 'build/index.js')
-rw-r--r-- | build/index.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/index.js b/build/index.js index 3174e69..52e711c 100644 --- a/build/index.js +++ b/build/index.js @@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.debug = void 0; const hypixel_1 = require("./hypixel"); const express_1 = __importDefault(require("express")); +const database_1 = require("./database"); const app = express_1.default(); -exports.debug = true; +exports.debug = false; app.use((req, res, next) => { if (process.env.key && req.headers.key !== process.env.key) // if a key is set in process.env and the header doesn't match return an error @@ -24,4 +25,7 @@ app.get('/player/:user', async (req, res) => { app.get('/player/:user/:profile', async (req, res) => { res.json(await hypixel_1.fetchMemberProfile(req.params.user, req.params.profile)); }); +app.get('/leaderboard/:name', async (req, res) => { + res.json(await database_1.fetchMemberLeaderboard(req.params.name)); +}); app.listen(8080, () => console.log('App started :)')); |