Auth Resources
This commit is contained in:
@@ -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';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user