14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
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',
|
|
};
|
|
}
|
|
}
|