import { Module } from '@nestjs/common';
import { UserCommunicationAddressService } from './user-communication-address.service';
import { UserCommunicationAddressController } from './user-communication-address.controller';

@Module({
  controllers: [UserCommunicationAddressController],
  providers: [UserCommunicationAddressService],
})
export class UserCommunicationAddressModule {}
