Files
dotfiles/python/orm/__init__.py

9 lines
194 B
Python

"""ORM package exports."""
from __future__ import annotations
from python.orm.base import RichieBase, TableBase
from python.orm.temp import Temp
__all__ = ["RichieBase", "TableBase", "Temp"]