Skip to content

Commit 0987f05

Browse files
committed
feat(add IntegrationProto):
1 parent f0fb958 commit 0987f05

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import asyncio
2+
from typing import Protocol
3+
4+
5+
class IntegrationProto(Protocol):
6+
def __init__(
7+
self, prompt_groups: list, tools_inbox: asyncio.Queue, opts: dict = {}
8+
): ...
9+
10+
async def apply(self) -> list: ...

0 commit comments

Comments
 (0)