aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/HomeController.ts
blob: dbe9fbdef3c1b05fd05b8ea78b6bef454cdaffce (plain) (blame)
1
2
3
4
5
6
7
8
9
// import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'

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

    return { hello: 'world' };
  }
}