#!/usr/bin/env python # -*- coding: utf-8 -*- """ @author: Deepcold @file: config.py @time: 2019/8/20 11:16 """ import os SOURCE_ROOT = os.path.abspath(os.path.dirname(__file__)) CONFIG_DICT = { "develop": "config_dev.yaml", "product": "config_prd.yaml", "testing": "config_test.yaml"}