From cba40b6aff598e821199c186c5f1795e5252bab9 Mon Sep 17 00:00:00 2001 From: Joseph Ditton Date: Tue, 16 Nov 2021 19:14:46 -0700 Subject: separate client and server apps --- server/app.controller.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 server/app.controller.ts (limited to 'server/app.controller.ts') 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() {} +} -- cgit v1.2.3-70-g09d2