FlotillasGPS - Sistema completo de monitoreo de flotillas GPS
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.
This commit is contained in:
23
backend/app/services/__init__.py
Normal file
23
backend/app/services/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user