mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
- Import MCPService from .mcp_service module - Add MCPService to __all__ exports list - Make MCPService available in component service package
11 lines
252 B
Python
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",
|
|
]
|