Files
ai-agent-admin/backend-fastapi/core/dept/__init__.py
T
2026-06-08 18:14:59 +08:00

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"]