pkg rename + docs

This commit is contained in:
lda
2026-05-19 23:40:47 +07:00 Verified
parent 5bda3e3770
commit da0dea6b52
19 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -27,12 +27,12 @@ def test_root_facade_exports_core_entrypoints() -> None:
def test_concern_package_imports_resolve() -> None:
from wf_mcp.broker import WfMcpService, load_broker_config
from wf_mcp.proxy import ProxyRuntime
from wf_mcp.sdk import McpSdkAdapter
from wf_mcp.storage import FileStore
from wf_mcp.transparent_proxy import ProxyRuntime, TransparentProxyRuntime
assert FileStore.__name__ == "FileStore"
assert McpSdkAdapter.__name__ == "McpSdkAdapter"
assert WfMcpService.__name__ == "WfMcpService"
assert ProxyRuntime.__name__ == "ProxyRuntime"
assert callable(load_broker_config)
assert TransparentProxyRuntime is ProxyRuntime