mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-08 22:21:15 +00:00
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",
|
|
]
|