fixed orm __init__.py

This commit is contained in:
2026-03-08 10:34:17 -04:00
parent ec80bf1c5f
commit 583af965ad

View File

@@ -1 +1,9 @@
"""ORM package exports.""" """ORM package exports."""
from python.orm.richie.base import RichieBase
from python.orm.van_inventory.base import VanInventoryBase
__all__ = [
"RichieBase",
"VanInventoryBase",
]