aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/HomeController.ts
blob: 669d9706e46b4083288bb5d40f70bfb0e681eb9b (plain) (blame)
1
2
3
4
5
6
7
8
9
// import type { HttpContext } from '@adonisjs/core/http'

export default class HomeController {
  public async index() {
    // TODO: Actually do something instead of alwayas returning success.

    return { hello: 'world' }
  }
}