initial: standalone repo from monorepo split

This commit is contained in:
kevin-asprec
2026-04-13 09:37:07 +08:00
commit 5382f3b4e5
87 changed files with 5278 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { Controller, Get } from '@nestjs/common';
import { Public } from '../common/decorators/public.decorator';
@Controller('health')
export class HealthController {
@Get()
@Public()
check() {
return {
status: 'ok',
service: 'admin-api',
timestamp: new Date().toISOString(),
};
}
}

View File

@@ -0,0 +1,7 @@
import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
@Module({
controllers: [HealthController],
})
export class HealthModule {}