16 lines
491 B
TypeScript
16 lines
491 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ApplicationModule } from '../application/application.module';
|
|
import { AnalyticsController } from './controllers/analytics.controller';
|
|
import { PresenceController } from './controllers/presence.controller';
|
|
import { HealthController } from './controllers/health.controller';
|
|
|
|
@Module({
|
|
imports: [ApplicationModule],
|
|
controllers: [
|
|
AnalyticsController,
|
|
PresenceController,
|
|
HealthController,
|
|
],
|
|
})
|
|
export class ApiModule {}
|