#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ # @Version : Python 3.11.4 # @Software : Sublime Text 4 # @Author : StudentCWZ # @Email : StudentCWZ@outlook.com # @Date : 2023/11/4 15:08 # @File : constants.py # @Description : """ DEFAULT_CONFIG = 'config.yaml' ENV_CONFIG_MAP = { 'PRODUCTION': 'production_config.yaml', 'DEVELOPMENT': 'config.yaml', # Add more environments here if necessary }