6 lines
173 B
Python
6 lines
173 B
Python
from decouple import config
|
|
from etcd3_wrapper import Etcd3Wrapper
|
|
|
|
etcd_client = Etcd3Wrapper(
|
|
host=config("ETCD_URL"), user="root", password=config("ETCD_PASSWORD")
|
|
)
|