myrmidon / python /src /server /config /__init__.py
tek Atrust
chore(deploy): build monolithic server for Hugging Face
d5ef46f
Raw
History Blame Contribute Delete
481 Bytes
"""
Configuration module for Archon
This module provides configuration management and service discovery
for the Archon microservices architecture.
"""
from .service_discovery import (
Environment,
ServiceDiscovery,
discovery,
get_agents_url,
get_api_url,
get_mcp_url,
is_service_healthy,
)
__all__ = [
"ServiceDiscovery",
"Environment",
"discovery",
"get_api_url",
"get_mcp_url",
"get_agents_url",
"is_service_healthy",
]