2026-01-21 15:13:21 -06:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { BitacoraMesaService } from './bitacora_mesa.service';
|
|
|
|
|
import { BitacoraMesaController } from './bitacora_mesa.controller';
|
2026-01-21 17:10:49 -06:00
|
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
|
|
|
import { BitacoraMesa } from './entities/bitacora_mesa.entity';
|
2026-01-21 15:13:21 -06:00
|
|
|
|
|
|
|
|
@Module({
|
2026-01-21 17:10:49 -06:00
|
|
|
imports:[TypeOrmModule.forFeature([BitacoraMesa])],
|
2026-01-21 15:13:21 -06:00
|
|
|
controllers: [BitacoraMesaController],
|
|
|
|
|
providers: [BitacoraMesaService],
|
|
|
|
|
})
|
|
|
|
|
export class BitacoraMesaModule {}
|