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
+12
View File
@@ -0,0 +1,12 @@
from __future__ import annotations
import argparse
from collections.abc import Sequence
from host_agent.app import create_application
def main(argv: Sequence[str] | None = None) -> None:
parser = argparse.ArgumentParser(description="Run the Device Host Agent")
parser.parse_args(argv)
create_application().run()