import { Module } from "@nestjs/common"
import { TypeOrmModule } from "@nestjs/typeorm"
import { State } from "src/modules/state/entities/state.entity"
import { StateSeedService } from "./state-seed.service"
import { CountryRepository } from "src/modules/country/repositories/country.repository"
import { Country } from "src/modules/country/entities/country.entity"

@Module({
  imports: [TypeOrmModule.forFeature([State, Country])],
  providers: [StateSeedService, CountryRepository],
  exports: [StateSeedService],
})
export class StateSeedModule {}
