aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/HomeController.ts
blob: bae3bc20830a6cdcb903e3c2bcfd42397ef3f4f7 (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' };
  }
}