first commit

This commit is contained in:
Mr Cheff 2024-12-25 23:45:00 +01:00 committed by mr. M
commit 232d8b37d6
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
36 changed files with 11302 additions and 0 deletions

7
src/app.controller.ts Normal file
View file

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