Commit eec8e788 authored by Diego Iván's avatar Diego Iván
Browse files

agregando entidad town traduction

parent 45b1dcdc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,10 +5,11 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { Town } from './entities/town.entity';
import { StateService } from 'src/state/state.service';
import { State } from 'src/state/entities/state.entity';
import { TownTraduction } from './entities/town-traduction.entity';

@Module({
  controllers: [TownController],
  providers: [TownService, StateService],
  imports: [TypeOrmModule.forFeature([Town, State])],
  imports: [TypeOrmModule.forFeature([Town, State, TownTraduction])],
})
export class TownModule {}