Onionr/src/onionrplugins/pluginapis.py
2022-08-16 09:54:54 -05:00

7 lines
260 B
Python

#
from typing import Callable, Dict
# plugin apis are methods intended to be available to the rpc
# plugin, this is so plugins can provide apis to other plugins
# plugins add their methods during or before afterinit event
plugin_apis: Dict[str, Callable] = {}