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