我正在使用 NestJS
我有一个名为
RmqModule
的动态模块,我想在另一个模块中使用它
import { Module } from '@nestjs/common';
import { RmqModule } from '@app/common';
@Module({
imports: [RmqModule.register({ name: 'this value must come from environment variable and I don\'t know how to get it here' } ), ],
controllers: [],
providers: [],
})
export class AnotherModule { }
我必须从环境变量传递一个值,但我不知道在这里做这件事