Files
agentic_security/agentic_security/integrations/__init__.py
T
Alexander Myasoedov da63270142 fix(pc):
2025-03-18 17:40:23 +02:00

13 lines
243 B
Python

import asyncio
from typing import Protocol
class IntegrationProto(Protocol):
def __init__(
self, prompt_groups: list, tools_inbox: asyncio.Queue, opts: dict = {}
):
...
async def apply(self) -> list:
...