mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
8 lines
180 B
Python
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): ...
|