env.py 511 字节
Newer Older
H
hjdhnx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File  : env.py
# Author: DaShenHan&道长-----先苦后甜,任凭晚风拂柳颜------
# Date  : 2022/11/21

from utils.cfg import cfg
from controllers.service import storage_service

def get_env():
    new_conf = cfg
    lsg = storage_service()
    store_conf_dict = lsg.getStoreConfDict()
    new_conf.update(store_conf_dict)
    # print(new_conf)
    env = {
        'ali_token': new_conf.ALI_TOKEN,
        'js_proxy':new_conf.JS_PROXY
    }
    return env