ishaq101 commited on
Commit
a7d8798
·
1 Parent(s): 9943db8

[NOTICKET] Init db_client endpoint

Browse files
Files changed (1) hide show
  1. 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]