TestFastApi/core/models/__init__.py

17 lines
296 B
Python

__all__ = (
"Base",
"Product",
"db_helper",
"DatabaseHelper",
"User",
"Post",
"Profile",
)
from .base import Base
from .db_helper import DatabaseHelper, db_helper
from .product import Product
from .user import User
from .post import Post
from .profile import Profile