19 lines
666 B
TypeScript
19 lines
666 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { IntegrationsController } from './integrations.controller';
|
|
import { IntegrationsService } from './integrations.service';
|
|
import { PlatformController } from './platform.controller';
|
|
import { PlatformOverviewController } from './platform-overview.controller';
|
|
import { PlatformService } from './platform.service';
|
|
import { PublicTenantsController } from './public-tenants.controller';
|
|
|
|
@Module({
|
|
controllers: [
|
|
PlatformController,
|
|
PlatformOverviewController,
|
|
IntegrationsController,
|
|
PublicTenantsController,
|
|
],
|
|
providers: [PlatformService, IntegrationsService],
|
|
})
|
|
export class PlatformModule {}
|