cambio en algunas tablas

This commit is contained in:
2025-11-06 14:01:53 -06:00
parent 4770e95420
commit 9d9df020db
6 changed files with 171 additions and 151 deletions
+2
View File
@@ -3,6 +3,7 @@ import { Module } from '@nestjs/common';
import { AuthService } from './auth.service';
import { Usuario } from 'src/usuario/entities/usuario.entity';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AuthController } from './auth.controller';
@Module({
imports: [
@@ -12,6 +13,7 @@ import { TypeOrmModule } from '@nestjs/typeorm';
signOptions: { expiresIn: '1h' },
}),
],
controllers: [AuthController],
providers: [AuthService],
exports: [AuthService],
})