This commit is contained in:
2026-08-28 17:31:02 +02:00
commit 2b30e8bd39
694 changed files with 49243 additions and 0 deletions
@@ -0,0 +1,14 @@
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 {}