summaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
blob: ff05b1c9e2dc628bb3d8771a33274f84c1d3ec89 (plain) (blame)
1
2
3
4
5
6
7
import type { HttpContext } from '@adonisjs/core/http'

export default class EmptyController {
  public async show({ response }: HttpContext) {
    return response.send([])
  }
}