Wox/Wox.Plugin.Host.Python/plugin_manager.py

6 lines
201 B
Python

"""Plugin manager for handling plugin instances and responses"""
from typing import Dict, Any
# Global state
plugin_instances: Dict[str, Dict[str, Any]] = {}
waiting_for_response: Dict[str, Any] = {}