15 lines
646 B
TypeScript
15 lines
646 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AgentsService } from './agents.service';
|
|
import { AgentNetworkService } from './agent-network.service';
|
|
import { AgentCreditService } from './agent-credit.service';
|
|
import { WalletModule } from '../ledger/wallet.module';
|
|
import { AuthModule } from '../identity/auth.module';
|
|
import { SystemConfigModule } from '../../shared/config/system-config.module';
|
|
|
|
@Module({
|
|
imports: [WalletModule, AuthModule, SystemConfigModule],
|
|
providers: [AgentsService, AgentNetworkService, AgentCreditService],
|
|
exports: [AgentsService, AgentNetworkService, AgentCreditService],
|
|
})
|
|
export class AgentsModule {}
|