import { Module } from '@nestjs/common'; import { BrandingAdminController, BrandingController } from './branding.controller'; import { BrandingStorageService } from './branding-storage.service'; import { BrandingService } from './branding.service'; /** Instance branding — logo and favicon (issue #306). Exports the services so * the pond-level override (#307) can build on the same storage and the same * resolution path instead of a parallel one. */ @Module({ controllers: [BrandingController, BrandingAdminController], providers: [BrandingService, BrandingStorageService], exports: [BrandingService, BrandingStorageService], }) export class BrandingModule {}