import { Controller, Get } from '@nestjs/common';

@Controller()
export class RootController {
  @Get()
  getRoot() {
    return {
      message: 'G-PSF MIS Backend API',
      version: '1.0.0',
      endpoints: {
        api: '/api/v1/',
        health: '/api/v1/health',
        docs: '/api/v1/docs',
      },
      status: 'running',
    };
  }
}
