Added page layouts
This commit is contained in:
12
backend/src/page-layout/page-layout.module.ts
Normal file
12
backend/src/page-layout/page-layout.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PageLayoutService } from './page-layout.service';
|
||||
import { PageLayoutController } from './page-layout.controller';
|
||||
import { TenantModule } from '../tenant/tenant.module';
|
||||
|
||||
@Module({
|
||||
imports: [TenantModule],
|
||||
controllers: [PageLayoutController],
|
||||
providers: [PageLayoutService],
|
||||
exports: [PageLayoutService],
|
||||
})
|
||||
export class PageLayoutModule {}
|
||||
Reference in New Issue
Block a user