ucloud-api/config.py

7 lines
166 B
Python
Raw Normal View History

2019-09-03 18:01:40 +02:00
from etcd3_wrapper import Etcd3Wrapper
from decouple import config
2019-09-04 18:01:55 +05:00
WITHOUT_CEPH = config("WITHOUT_CEPH", False)
2019-09-03 18:01:40 +02:00
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))