TaskPulse/backend/app/services/__init__.py
Steven 521cf0269c feat: initial TaskPulse release
AI Agent 定时任务跟踪、监控、状态看板系统。

- FastAPI + Vue3 单体应用
- AI Agent 一键接入(批量注册 API)
- 暗色主题 Dashboard
- 后台调度器 + 超时告警
- 飞书/邮件/Webhook 多渠道通知
- Base URL 可配置
- Gunicorn 生产部署
2026-06-14 22:39:23 +08:00

16 lines
478 B
Python

"""Service layer __init__."""
from app.services.agent import AgentService # noqa: F401
from app.services.task import TaskService # noqa: F401
from app.services.execution import ExecutionService # noqa: F401
from app.services.scheduler import SchedulerService # noqa: F401
from app.services.notification import NotificationService # noqa: F401
__all__ = [
"AgentService",
"TaskService",
"ExecutionService",
"SchedulerService",
"NotificationService",
]