Auth Resources

This commit is contained in:
2022-09-05 10:27:36 +02:00
parent 87aa032b6b
commit 083b7177d3
19 changed files with 147 additions and 581 deletions

View File

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