add auth service to monorepo

This commit is contained in:
Ammar Qaffaf
2024-02-12 23:50:44 +03:00
parent 220261bec9
commit 117c42d034
19 changed files with 152 additions and 13 deletions

View 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();
}
}