github-actions[bot]
Deploy Backend from GitHub Actions Commit: 360d9efe8e4d3b14a14214e16174a42a4c17aef6
dcf3508 | import { Controller, Get } from '@nestjs/common'; | |
| () | |
| export class AppController { | |
| () | |
| getRootHealth() { | |
| return { | |
| status: 'healthy', | |
| service: 'PhiloMind NestJS Backend', | |
| timestamp: new Date().toISOString(), | |
| }; | |
| } | |
| ('health') | |
| getHealth() { | |
| return { | |
| status: 'healthy', | |
| timestamp: new Date().toISOString(), | |
| }; | |
| } | |
| } | |