feat: scaffold NestJS API application

This commit is contained in:
2026-05-27 14:19:42 +05:30
parent 1b10dda42e
commit ee353762a5
11 changed files with 230 additions and 0 deletions
@@ -0,0 +1,13 @@
import { Controller, Get } from '@nestjs/common';
@Controller('health')
export class HealthController {
@Get()
check() {
return {
status: 'ok',
service: 'tower-api',
timestamp: new Date().toISOString(),
};
}
}
@@ -0,0 +1,7 @@
import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
@Module({
controllers: [HealthController],
})
export class HealthModule {}