commit
This commit is contained in:
15
src/backoffice/cest/cest.module.ts
Normal file
15
src/backoffice/cest/cest.module.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Pccest } from '../../domain/entity/tables/pccest.entity';
|
||||
import { CestController } from './cest.controller';
|
||||
import { CestService } from './cest.service';
|
||||
import { CacheModule, Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
|
||||
@Module({
|
||||
imports: [CacheModule.register(),
|
||||
TypeOrmModule.forFeature([Pccest])],
|
||||
controllers: [
|
||||
CestController,],
|
||||
providers: [
|
||||
CestService,],
|
||||
})
|
||||
export class CestModule { }
|
||||
Reference in New Issue
Block a user