mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-06 02:26:42 +00:00
9 lines
174 B
Python
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:
|
|
...
|