Endpoint de test

This commit is contained in:
LeoMortari
2025-09-15 08:43:40 -03:00
parent a9f4ad1068
commit 853d49dd0b
6 changed files with 63 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import { VideosController } from './videos/videos.controller';
import { UsuariosModule } from './usuarios/usuarios.module';
import { LoggerMiddleware } from './middleware/logger.middleware';
import { RolesGuard } from './auth/roles.guard';
import { TestModule } from './test/test.module';
@Module({
imports: [
@@ -17,6 +18,7 @@ import { RolesGuard } from './auth/roles.guard';
VideosModule,
AuthModule,
UsuariosModule,
TestModule,
],
controllers: [AppController],
providers: [AppService, RolesGuard],