first commit

This commit is contained in:
NAME
2026-05-11 03:18:19 +00:00
commit c72a38201a
37 changed files with 10182 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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();
}
}