mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
9 lines
194 B
Python
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"]
|