mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
11 lines
283 B
Python
11 lines
283 B
Python
"""Data science dev database ORM models."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from python.orm.data_science_dev.posts import partitions # noqa: F401 — registers partition classes in metadata
|
|
from python.orm.data_science_dev.posts.tables import Posts
|
|
|
|
__all__ = [
|
|
"Posts",
|
|
]
|