Spaces:
Running
Running
| import { Controller, Get } from '@nestjs/common'; | |
| import { ApiTags, ApiOperation } from '@nestjs/swagger'; | |
| ('Health') | |
| ('health') | |
| export class HealthController { | |
| () | |
| ({ summary: 'Check API health and uptime' }) | |
| check() { | |
| return { | |
| status: 'ok', | |
| timestamp: new Date().toISOString(), | |
| uptime: process.uptime(), | |
| service: 'MaternAlert Backend', | |
| version: '1.0.0', | |
| }; | |
| } | |
| } | |