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