aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
blob: a07790e3b4357fa2a0b4372a06f3ccfe920ded7c (plain) (blame)
1
2
3
4
5
6
7
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';

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