netadm/models/__init__.py

9 lines
101 B
Python
Raw Normal View History

2024-10-01 20:06:21 +00:00
from .db_helper import db_helper
from .base import Base
__all__ = (
"db_helper",
"Base",
)