aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/HealthController.ts
blob: 59094e2a57114ce7608005eb504863254d7c77e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default class HealthController {
  public async index() {
    // TODO: Actually do something instead of alwayas returning success.

    return {
      api: 'success',
      db: 'success',
    }
  }
}