import { Module } from "@nestjs/common"; import { SettingsService } from "./settings.service"; /** * Operator-editable configuration. No controller of its own — each setting is * exposed by the feature that owns it (summary recipients live under * /notifications), so the validation and the permission live next to the * thing they protect rather than behind a generic key/value endpoint. */ @Module({ providers: [SettingsService], exports: [SettingsService], }) export class SettingsModule {}