#!/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/11 14:11 # @File : universal.py # @Description : """ # universal.py class GlobalConfig: """Configuration for the application.""" def __init__(self): self.config = {} # This creates a global instance of the Config class global_config = GlobalConfig()