8 lines
205 B
Python
8 lines
205 B
Python
import configparser
|
|
from etcd_wrapper import EtcdWrapper
|
|
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read('pay.conf')
|
|
|
|
etcd_client = EtcdWrapper(host=config['etcd']['host'], port=config['etcd']['port'])
|