aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
blob: 80d70b7a4b10b31fb2bba8497774527739020df8 (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([]);
  }
}