8 lines
246 B
Python
8 lines
246 B
Python
|
import decouple
|
||
|
|
||
|
from os.path import join as join_path
|
||
|
from etcd3_wrapper import Etcd3Wrapper
|
||
|
|
||
|
client = Etcd3Wrapper(port=decouple.config('PORT'))
|
||
|
admin_uotp = client.get(join_path(decouple.config('BASE_PREFIX'), 'admin'))
|
||
|
print(admin_uotp.value)
|