8 lines
198 B
Python
8 lines
198 B
Python
from .method import MethodCall
|
|
from .service import Service
|
|
|
|
|
|
class MethodCallRouterInterface:
|
|
def send_call(self, service: Service, call: MethodCall) -> None:
|
|
raise NotImplementedError
|