mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
10 lines
190 B
Python
10 lines
190 B
Python
"""ORM package exports."""
|
|
|
|
from python.orm.richie.base import RichieBase
|
|
from python.orm.van_inventory.base import VanInventoryBase
|
|
|
|
__all__ = [
|
|
"RichieBase",
|
|
"VanInventoryBase",
|
|
]
|