aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/Api/Static/EmptyController.ts')
-rw-r--r--app/Controllers/Http/Api/Static/EmptyController.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controllers/Http/Api/Static/EmptyController.ts b/app/Controllers/Http/Api/Static/EmptyController.ts
index a07790e..ff05b1c 100644
--- a/app/Controllers/Http/Api/Static/EmptyController.ts
+++ b/app/Controllers/Http/Api/Static/EmptyController.ts
@@ -1,7 +1,7 @@
1import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'; 1import type { HttpContext } from '@adonisjs/core/http'
2 2
3export default class EmptyController { 3export default class EmptyController {
4 public async show({ response }: HttpContextContract) { 4 public async show({ response }: HttpContext) {
5 return response.send([]); 5 return response.send([])
6 } 6 }
7} 7}