2019-08-28 20:21:41 +05:00
|
|
|
from etcd3_wrapper import Etcd3Wrapper
|
|
|
|
from decouple import config
|
|
|
|
|
2019-08-30 23:40:17 +05:00
|
|
|
# TODO: Remove timeout, use certificate authentication
|
2019-08-31 16:29:12 +05:00
|
|
|
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))
|