[NOTICKET] Init db_client endpoint
Browse files- src/api/v1/db_client.py +5 -0
src/api/v1/db_client.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from typing import Literal, Dict
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
dbtypes: Literal["postgresql", "mysql", "sqlite"] = Literal["postgresql", "mysql", "sqlite"]
|
| 5 |
+
creds: Dict[str, str]
|