netadm/models/__init__.py

9 lines
101 B
Python

from .db_helper import db_helper
from .base import Base
__all__ = (
"db_helper",
"Base",
)