Files
neo/backend/src/page-layout/page-layout.module.ts
Francisco Gaona 838a010fb2 Added page layouts
2025-12-23 09:44:05 +01:00

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 {}