10 lines
177 B
Python
10 lines
177 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
部门模块
|
|
"""
|
|
from core.dept.model import Dept
|
|
from core.dept.service import DeptService
|
|
|
|
__all__ = ["Dept", "DeptService"]
|