6 lines
113 B
Python
6 lines
113 B
Python
"""Database models."""
|
|
|
|
from .user import User
|
|
from .user_oauth import UserOAuth
|
|
|
|
__all__ = ["User", "UserOAuth"] |