pass-gen/app/data/type.py
2021-08-03 10:20:40 +02:00

9 lines
174 B
Python

from typing import Any, Protocol
class DBConnector(Protocol):
def commit(self) -> None:
...
def execute(self, query: str, *args: Any) -> None:
...