13 lines
328 B
Python
13 lines
328 B
Python
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()
|