diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 14:13:42 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 14:13:42 -0600 |
commit | 52e38809212133ef673d11bfa96ba3bb43c3644c (patch) | |
tree | f54408afd41cc64b64d5e82a3ad814b1bb55d4a7 /index.ts | |
parent | a23103ec24128f2e24b93ad101ade6dfdd4758c3 (diff) | |
download | skyblock-api-52e38809212133ef673d11bfa96ba3bb43c3644c.tar.gz skyblock-api-52e38809212133ef673d11bfa96ba3bb43c3644c.tar.bz2 skyblock-api-52e38809212133ef673d11bfa96ba3bb43c3644c.zip |
move stuff into src folder
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 |