Initial commit

This commit is contained in:
2026-04-07 11:36:33 +03:00
commit 70f016d113
10 changed files with 4504 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { HealthController } from './health/health.controller';
@Module({
imports: [
ConfigModule.forRoot({
isGlobal: true,
envFilePath: '.env',
}),
],
controllers: [HealthController],
})
export class AppModule {}