first commit
This commit is contained in:
9
apps/api/src/auth/auth.module.ts
Normal file
9
apps/api/src/auth/auth.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { FirebaseService } from './firebase.service';
|
||||
import { AuthGuard } from './auth.guard';
|
||||
|
||||
@Module({
|
||||
providers: [FirebaseService, AuthGuard],
|
||||
exports: [FirebaseService, AuthGuard],
|
||||
})
|
||||
export class AuthModule {}
|
||||
Reference in New Issue
Block a user