10 lines
177 B
Python
10 lines
177 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
用户模块
|
|
"""
|
|
from core.user.model import User
|
|
from core.user.service import UserService
|
|
|
|
__all__ = ["User", "UserService"]
|