Spaces:
Sleeping
Sleeping
| import { Controller, Get } from '@nestjs/common'; | |
| () | |
| export class AppController { | |
| () | |
| getHello() { | |
| return { | |
| status: 'active', | |
| service: 'Kodelyx API Server', | |
| message: 'Welcome to the backend API. Please use the frontend client to interact.', | |
| timestamp: new Date().toISOString(), | |
| }; | |
| } | |
| } | |