mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-03-04 20:30:19 +00:00
init nest (wip)
This commit is contained in:
parent
1a211e261e
commit
3b5f41f933
26 changed files with 8251 additions and 0 deletions
12
app/api/src/app.controller.ts
Normal file
12
app/api/src/app.controller.ts
Normal 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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue