8 lines
95 B
Python
8 lines
95 B
Python
|
from .base import Base
|
||
|
from .user import UserModel
|
||
|
|
||
|
__all__ = (
|
||
|
"Base",
|
||
|
"UserModel",
|
||
|
)
|