This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
web-backend/conf/util.py
2024-12-23 11:01:44 +08:00

8 lines
163 B
Python

import configparser
config_file_path = '/conf/config.ini'
config = configparser.ConfigParser()
def get_config_object(): return config
""" 返回配置对象 """