feat: add backend FastAPI structure and Supabase schema
This commit is contained in:
21
server/app/domain/__init__.py
Normal file
21
server/app/domain/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from app.domain.entities.ruta import (
|
||||
Coordenada,
|
||||
EstadoCamion,
|
||||
ETAResult,
|
||||
NotificationPreferences,
|
||||
PuntoRuta,
|
||||
Ruta,
|
||||
TruckStatus,
|
||||
TipoNotificacion,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Coordenada",
|
||||
"EstadoCamion",
|
||||
"ETAResult",
|
||||
"NotificationPreferences",
|
||||
"PuntoRuta",
|
||||
"Ruta",
|
||||
"TruckStatus",
|
||||
"TipoNotificacion",
|
||||
]
|
||||
Reference in New Issue
Block a user