feat(add scan-csv api route):

This commit is contained in:
Alexander Myasoedov
2025-02-14 11:40:55 +02:00
parent 0987f05c4d
commit 4ef7473a56
3 changed files with 51 additions and 3 deletions
+4 -2
View File
@@ -5,6 +5,8 @@ from typing import Protocol
class IntegrationProto(Protocol):
def __init__(
self, prompt_groups: list, tools_inbox: asyncio.Queue, opts: dict = {}
): ...
):
...
async def apply(self) -> list: ...
async def apply(self) -> list:
...