github-actions[bot]
Deploy Backend from GitHub Actions Commit: ca37b2a1c9dd5c702619ea7ae7b3260d2fb5663d
b185a6d | 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(), | |
| }; | |
| } | |
| } | |