5 lines
120 B
Python
5 lines
120 B
Python
|
from etcd3_wrapper import Etcd3Wrapper
|
||
|
from decouple import config
|
||
|
|
||
|
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))
|