Add registration

This commit is contained in:
2025-12-22 23:02:41 +01:00
parent 5b91dc0bbe
commit 28094bae12
39 changed files with 441 additions and 129 deletions

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) {}
}