Files
nullcart/backend/src/modules/shopSettings/ShopSettingsModule.ts
T
2026-08-28 17:31:02 +02:00

15 lines
590 B
TypeScript

import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { SimplexModule } from '../simplex/SimplexModule';
import { ShopSettingsController } from './controllers/ShopSettingsController';
import { ShopSettings } from './entities/ShopSettings';
import { ShopSettingsService } from './services/ShopSettingsService';
@Module({
imports: [TypeOrmModule.forFeature([ShopSettings]), SimplexModule],
controllers: [ShopSettingsController],
providers: [ShopSettingsService],
exports: [ShopSettingsService]
})
export class ShopSettingsModule {}