import { Global, Module } from '@nestjs/common'; import { TestWhitelistService } from './test-whitelist.service'; @Global() @Module({ providers: [TestWhitelistService], exports: [TestWhitelistService], }) export class TestWhitelistModule {}