Files
odoo-stubs/odoo-stubs/service/__init__.pyi
Trinh Anh Ngoc ebfdd704fe Update stubs
2022-10-17 11:04:45 +07:00

8 lines
180 B
Python

from typing import Any, Callable
from . import server as server
_dispatchers: dict[str, Callable[[str, Any], Any]]
def dispatch_rpc(service_name: str, method: str, params): ...