2017-08-20 17:09:25 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Http routes are entry points to your web application. You can create
|
|
|
|
| routes for different URL's and bind Controller actions to them.
|
|
|
|
|
|
|
|
|
| A complete guide on routing is available here.
|
2018-06-16 06:40:33 +00:00
|
|
|
| http://adonisjs.com/docs/4.1/routing
|
2017-08-20 17:09:25 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-10-05 13:14:58 +00:00
|
|
|
/** @type {typeof import('@adonisjs/framework/src/Route/Manager')} */
|
2017-08-20 17:09:25 +00:00
|
|
|
const Route = use('Route')
|
|
|
|
|
|
|
|
Route.on('/').render('welcome')
|