import { Module } from '@nestjs/common'; import { PlatformModule } from '../platform/platform.module'; import { AuthModule } from '../auth/auth.module'; import { CallerResolutionController } from './caller-resolution.controller'; import { CallerResolutionService } from './caller-resolution.service'; @Module({ imports: [PlatformModule, AuthModule], controllers: [CallerResolutionController], providers: [CallerResolutionService], exports: [CallerResolutionService], }) export class CallerResolutionModule {}