diff options
-rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 3924c60..2612647 100644 --- a/src/index.ts +++ b/src/index.ts @@ -53,7 +53,7 @@ app.get('/', async (req, res) => { } if (req.headers.key === process.env.key) data.key = getKeyUsage() - res.json() + res.json(data) }) app.get('/player/:user', async (req, res) => { |