ucloud-api/config.py
2019-09-05 13:42:12 +05:00

6 lines
177 B
Python

from etcd3_wrapper import Etcd3Wrapper
from decouple import config
WITHOUT_CEPH = config("WITHOUT_CEPH", False, cast=bool)
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))