mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-13 02:19:02 -04:00
13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AppController } from './app.controller';
|
|
import { AppService } from './app.service';
|
|
import { HealthController } from './health.controller';
|
|
import { TerminusModule } from '@nestjs/terminus';
|
|
|
|
@Module({
|
|
imports: [TerminusModule],
|
|
controllers: [AppController, HealthController],
|
|
providers: [AppService],
|
|
})
|
|
export class AppModule {}
|