mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-16 18:56:22 +00:00
add auth service to monorepo
This commit is contained in:
12
apps/auth/src/auth.controller.ts
Normal file
12
apps/auth/src/auth.controller.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
import { AuthService } from './auth.service';
|
||||
|
||||
@Controller()
|
||||
export class AuthController {
|
||||
constructor(private readonly authService: AuthService) {}
|
||||
|
||||
@Get()
|
||||
getHello(): string {
|
||||
return this.authService.getHello();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user