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

agregando townTraduction a los imports

parent 53b3f5b6
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ import { TownTraduction } from './entities/town-traduction.entity';

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