5 lines
175 B
Python
5 lines
175 B
Python
from etcd3_wrapper import Etcd3Wrapper
|
|
from decouple import config
|
|
|
|
# TODO: Remove timeout, use certificate authentication
|
|
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))
|