Saidie000's picture
Upload 83 files
09f1b19 verified
raw
history blame contribute delete
232 Bytes
"""Self-programming plugin engine interface."""
from __future__ import annotations
from typing import Protocol
class PluginEngineInterface(Protocol):
async def run_plugin(self, name: str, payload: dict) -> dict:
...