import { Module } from '@nestjs/common';
import { CountryCodeService } from './country-code.service';
import { CountryCodeController } from './country-code.controller';

@Module({
  controllers: [CountryCodeController],
  providers: [CountryCodeService],
})
export class CountryCodeModule { }
