LeagueStats/server-new/start/routes.ts
2020-10-04 17:30:04 +02:00

37 lines
1.1 KiB
TypeScript

/*
|--------------------------------------------------------------------------
| Routes
|--------------------------------------------------------------------------
|
| This file is dedicated for defining HTTP routes. A single file is enough
| for majority of projects, however you can define routes in different
| files and just make sure to import them inside this file. For example
|
| Define routes in following two files
| ├── start/routes/cart.ts
| ├── start/routes/customer.ts
|
| and then import them inside `start/routes/index.ts` as follows
|
| import './cart'
| import './customer'
|
*/
import Route from '@ioc:Adonis/Core/Route'
import mongodb from '@ioc:Mongodb/Database'
import Jax from 'App/Services/Jax'
Route.get('/', async () => {
return { hello: 'world' }
})
Route.get('mongo', async () => {
const match = await (await mongodb.connection().collection('matches')).findOne({})
return { test: match }
})
Route.get('jax', async () => {
const summoner = await Jax.Summoner.summonerName('LeagueStats GG', 'euw1')
return { player: summoner }
})