aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/HealthController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/HealthController.ts')
-rw-r--r--app/Controllers/Http/HealthController.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Controllers/Http/HealthController.ts b/app/Controllers/Http/HealthController.ts
new file mode 100644
index 0000000..bf185d8
--- /dev/null
+++ b/app/Controllers/Http/HealthController.ts
@@ -0,0 +1,10 @@
1export default class HealthController {
2 public async index() {
3 // TODO: Actually do something instead of alwayas returning success.
4
5 return {
6 api: 'success',
7 db: 'success',
8 };
9 }
10}