Files
helix-engage-server/src/caller/caller-resolution.module.ts
saridsa2 d0df6618b5 chore: track caller resolution module
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 17:13:35 +05:30

14 lines
526 B
TypeScript

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 {}