from .method import MethodCall from .service import Service class MethodCallRouterInterface: def send_call(self, service: Service, call: MethodCall) -> None: raise NotImplementedError