diff options
Diffstat (limited to 'index.ts')
-rw-r--r-- | index.ts | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/index.ts b/index.ts deleted file mode 100644 index af5095b..0000000 --- a/index.ts +++ /dev/null @@ -1,27 +0,0 @@ -import express from 'express' -import { fetchMemberProfile, fetchUser } from './hypixel' -import { fetchProfile } from './hypixelCached' - -const app = express() - - -app.get('/', async(req, res) => { - res.json({ ok: true }) -}) - -app.get('/player/:user', async(req, res) => { - res.json( - await fetchUser( - { user: req.params.user }, - ['profiles', 'player'] - ) - ) -}) - -app.get('/player/:user/:profile', async(req, res) => { - res.json( - await fetchMemberProfile(req.params.user, req.params.profile) - ) -}) - -app.listen(8080, () => console.log('App started :)'))
\ No newline at end of file |