16 lines
318 B
Python
16 lines
318 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class HostAgentApplication:
|
|
"""Process shell expanded by the Host Agent implementation tasks."""
|
|
|
|
def run(self) -> None:
|
|
return None
|
|
|
|
|
|
def create_application() -> HostAgentApplication:
|
|
return HostAgentApplication()
|