import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello() {
    return {
      name: 'Rental SaaS API',
      status: 'online',
      version: '1.0.0',
      modules: [
        'auth',
        'agencies',
        'fleet',
        'bookings',
        'pricing',
        'payments',
        'tpe',
        'contracts',
        'crm',
        'ai',
        'gps',
        'cms',
        'workflow',
      ],
    };
  }
}
