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