Source code for aries_cloudagent.protocols.out_of_band.v1_0.controller

"""Protocol controller for out-of-band."""

from typing import Sequence


[docs]class Controller: """Out-of-band protocol controller.""" def __init__(self, protocol: str): """Initialize the controller."""
[docs] def determine_goal_codes(self) -> Sequence[str]: """Return defined goal_codes.""" return []