feat: 开发broker相关代码,开发全局代码

This commit is contained in:
R524809
2025-11-18 18:01:04 +08:00
parent a9d7fc9038
commit 7acadf191f
29 changed files with 3149 additions and 106 deletions
+4
View File
@@ -1,6 +1,8 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { DatabaseModule } from './database/database.module';
import { CoreModule } from './core/core.module';
import { BrokerModule } from './modules/broker/broker.module';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@@ -13,7 +15,9 @@ import { AppService } from './app.service';
'.env',
],
}),
CoreModule,
DatabaseModule,
BrokerModule,
],
controllers: [AppController],
providers: [AppService],