- Backend NestJS con módulos de autenticación, inventario, créditos - Frontend React con dashboard y componentes UI - Base de datos PostgreSQL con migraciones - Tests E2E configurados - Configuración de Docker y deployment Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
585 B
TypeScript
18 lines
585 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { NotificationsController } from './notifications.controller';
|
|
import { NotificationsService } from './notifications.service';
|
|
import { Notification } from './entities/notification.entity';
|
|
import { UsersModule } from '../users/users.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
TypeOrmModule.forFeature([Notification]),
|
|
UsersModule,
|
|
],
|
|
controllers: [NotificationsController],
|
|
providers: [NotificationsService],
|
|
exports: [NotificationsService],
|
|
})
|
|
export class NotificationsModule {}
|