重构
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
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],
|
||||
exports: [AgentsService],
|
||||
providers: [AgentsService, AgentNetworkService, AgentCreditService],
|
||||
exports: [AgentsService, AgentNetworkService, AgentCreditService],
|
||||
})
|
||||
export class AgentsModule {}
|
||||
|
||||
Reference in New Issue
Block a user