This commit is contained in:
ahmadbilalkhalid 2019-08-28 21:05:43 +05:00
commit 59dd365dd5
8 changed files with 15 additions and 15 deletions

6
config.py Normal file
View file

@ -0,0 +1,6 @@
from decouple import config
from etcd3_wrapper import Etcd3Wrapper
etcd_client = Etcd3Wrapper(
host=config("ETCD_URL"), user="root", password=config("ETCD_PASSWORD")
)