import { Module } from '@nestjs/common'; import { ThemeController } from './theme.controller'; import { ThemeService } from './theme.service'; @Module({ controllers: [ThemeController], providers: [ThemeService], exports: [ThemeService], }) export class ConfigThemeModule {}