24 lines
673 B
TypeScript
24 lines
673 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CameraModule } from './camera/camera.module';
|
|
import { CurrentModule } from './current/current.module';
|
|
import { DbModule } from './db/db.module';
|
|
import { EdgeModule } from './edge/edge.module';
|
|
import { HealthController } from './health.controller';
|
|
import { HistoryModule } from './history/history.module';
|
|
import { IngestModule } from './ingest/ingest.module';
|
|
import { TagModule } from './tag/tag.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
DbModule,
|
|
CameraModule,
|
|
IngestModule,
|
|
EdgeModule,
|
|
CurrentModule,
|
|
HistoryModule,
|
|
TagModule,
|
|
],
|
|
controllers: [HealthController],
|
|
})
|
|
export class AppModule {}
|