aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-10 18:37:40 -0700
committerLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-10 18:37:40 -0700
commit2ad43db1ed01fe0b5b116ddda1a5177c9f62c130 (patch)
tree8a6c6b551e7216d40c86e0954d828c783848a37b /app/Controllers/Http/Api/Static/EmptyController.ts
parentrefactor: project maintenance (diff)
downloadferdium-server-2ad43db1ed01fe0b5b116ddda1a5177c9f62c130.tar.gz
ferdium-server-2ad43db1ed01fe0b5b116ddda1a5177c9f62c130.tar.zst
ferdium-server-2ad43db1ed01fe0b5b116ddda1a5177c9f62c130.zip
updates
Diffstat (limited to 'app/Controllers/Http/Api/Static/EmptyController.ts')
-rw-r--r--app/Controllers/Http/Api/Static/EmptyController.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/Http/Api/Static/EmptyController.ts b/app/Controllers/Http/Api/Static/EmptyController.ts
index ff05b1c..80d70b7 100644
--- a/app/Controllers/Http/Api/Static/EmptyController.ts
+++ b/app/Controllers/Http/Api/Static/EmptyController.ts
@@ -1,7 +1,7 @@
1import type { HttpContext } from '@adonisjs/core/http' 1import type { HttpContext } from '@adonisjs/core/http';
2 2
3export default class EmptyController { 3export default class EmptyController {
4 public async show({ response }: HttpContext) { 4 public async show({ response }: HttpContext) {
5 return response.send([]) 5 return response.send([]);
6 } 6 }
7} 7}