import { Global, Module } from '@nestjs/common'; import { PLATFORM_PORTS, LocalDevPorts } from './platform-ports'; /** Binds the platform ports (P1: the permissive in-service default). */ @Global() @Module({ providers: [{ provide: PLATFORM_PORTS, useClass: LocalDevPorts }], exports: [PLATFORM_PORTS], }) export class PlatformModule {}