import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { CountriesService } from './countries.service';
import { CountriesController } from './countries.controller';
import { Country } from './entities/country.entity';

@Module({
  imports: [TypeOrmModule.forFeature([Country], 'scheme_dbs')],
  controllers: [CountriesController],
  providers: [CountriesService],
})
export class CountriesModule {}
