15 lines
590 B
TypeScript
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 {}
|