feat(host-agent): add workspace application entrypoint

This commit is contained in:
2026-07-12 16:42:51 +08:00
parent 2af8909b29
commit 5e98708a94
8 changed files with 85 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
from __future__ import annotations
from host_agent.app import HostAgentApplication, create_application
def test_create_application_returns_host_agent_process_shell() -> None:
application = create_application()
assert isinstance(application, HostAgentApplication)
assert application.run() is None