import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getStatus() { return { message: '🐴 GoHorseJobs Backoffice API is running!', docs: '/docs', health: '/health', version: '1.0.0', env: process.env.NODE_ENV || 'development', }; } }