Adding api (#11)

This commit was merged in pull request #11.
This commit is contained in:
2024-05-21 17:26:34 -05:00
committed by GitHub
parent 721b20b116
commit 4fc0401ddf
27 changed files with 9564 additions and 3 deletions

12
api/src/app.controller.ts Normal file
View File

@@ -0,0 +1,12 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
}