summaryrefslogtreecommitdiff
path: root/server/app.controller.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/app.controller.ts')
-rw-r--r--server/app.controller.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/server/app.controller.ts b/server/app.controller.ts
new file mode 100644
index 0000000..a6bcf58
--- /dev/null
+++ b/server/app.controller.ts
@@ -0,0 +1,8 @@
+import { Controller, Get, Render } from '@nestjs/common';
+
+@Controller()
+export class AppController {
+ @Get()
+ @Render('index')
+ index() {}
+}