init
This commit is contained in:
@@ -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 {}
|
||||
Reference in New Issue
Block a user