File size: 291 Bytes
67aa1ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """Capa de acceso a datos: cliente de MongoDB y utilidades."""
from app.database.mongodb import (
get_collection,
get_database,
mongodb,
)
from app.database.objectid import to_object_id
__all__ = [
"get_collection",
"get_database",
"mongodb",
"to_object_id",
]
|