13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
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 {}
|