Sistema completo para monitoreo y gestion de flotas de vehiculos con: - Backend FastAPI con PostgreSQL/TimescaleDB - Frontend React con TypeScript y TailwindCSS - App movil React Native con Expo - Soporte para dispositivos GPS, Meshtastic y celulares - Video streaming en vivo con MediaMTX - Geocercas, alertas, viajes y reportes - Autenticacion JWT y WebSockets en tiempo real Documentacion completa y guias de usuario incluidas.
24 lines
701 B
Python
24 lines
701 B
Python
"""
|
|
Módulo de servicios de lógica de negocio.
|
|
"""
|
|
|
|
from app.services.ubicacion_service import UbicacionService
|
|
from app.services.geocerca_service import GeocercaService
|
|
from app.services.alerta_service import AlertaService
|
|
from app.services.viaje_service import ViajeService
|
|
from app.services.traccar_service import TraccarService
|
|
from app.services.video_service import VideoService
|
|
from app.services.reporte_service import ReporteService
|
|
from app.services.notificacion_service import NotificacionService
|
|
|
|
__all__ = [
|
|
"UbicacionService",
|
|
"GeocercaService",
|
|
"AlertaService",
|
|
"ViajeService",
|
|
"TraccarService",
|
|
"VideoService",
|
|
"ReporteService",
|
|
"NotificacionService",
|
|
]
|