update packages, using FirebaseAdminModule

This commit is contained in:
2025-02-28 23:54:57 +01:00
parent 521e799bff
commit 27242819e2
31 changed files with 247 additions and 327 deletions

View File

@@ -1,13 +1,12 @@
import { Controller, Get, Request, UseGuards } from '@nestjs/common';
import { AppService } from './app.service';
import { AuthService } from './auth/auth.service';
import { AuthGuard } from './jwt-auth/auth.guard';
@Controller()
export class AppController {
constructor(
private readonly appService: AppService,
private authService: AuthService,
) {}
@UseGuards(AuthGuard)