import { PreferencesController } from "./controllers/preferences.controller"; import { PreferencesService } from "./services/preferences.service"; import { Module } from "@nestjs/common"; @Module({ controllers: [ PreferencesController ], providers: [ PreferencesService ], exports: [ PreferencesService ], }) export class PreferencesModule {}