diff options
Diffstat (limited to 'src/app.controller.ts')
-rw-r--r-- | src/app.controller.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/app.controller.ts b/src/app.controller.ts new file mode 100644 index 0000000..3e9bcca --- /dev/null +++ b/src/app.controller.ts @@ -0,0 +1,20 @@ +import { Body, Controller, Get, Post } from '@nestjs/common'; +import { AppService } from './app.service'; + +@Controller() +export class AppController { + constructor(private readonly appService: AppService) {} + + @Get() + getHello(): Object { + return this.appService.getHello(); + } + + @Post() + saveJournalData(@Body() journalData: any) { + console.log("JOURNAL DATA", journalData); + return { + success: "ok" + } + } +} |