ReMe/reme2/component/service/__init__.py
jinli.yl 98632dfc24
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
feat(service): add MCP service to component service module
- Import MCPService from .mcp_service module
- Add MCPService to __all__ exports list
- Make MCPService available in component service package
2026-04-28 00:24:25 +08:00

11 lines
252 B
Python

"""Service components for exposing jobs via different protocols."""
from .base_service import BaseService
from .http_service import HttpService
from .mcp_service import MCPService
__all__ = [
"BaseService",
"HttpService",
"MCPService",
]