8 lines
145 B
Python
8 lines
145 B
Python
"""Database models."""
|
|
|
|
from .plan import Plan
|
|
from .user import User
|
|
from .user_oauth import UserOAuth
|
|
|
|
__all__ = ["Plan", "User", "UserOAuth"]
|