Source code for genericroboticarm.robo_APIs

from .robo_interface import RoboInterface
from .interactive_transfer import InteractiveTransfer
from .dynamic_loader import collect_robo_implementations
from abc import ABC


[docs] class InteractiveRobot(RoboInterface, InteractiveTransfer, ABC): """ """
__all__=[ "InteractiveRobot", "RoboInterface", "InteractiveTransfer", "collect_robo_implementations", ]