universal.py 484 Bytes
Newer Older
崔为之's avatar
崔为之 committed
1 2 3 4 5 6 7
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
# @Version     : Python 3.11.4
# @Software    : Sublime Text 4
# @Author      : StudentCWZ
# @Email       : StudentCWZ@outlook.com
崔为之's avatar
崔为之 committed
8
# @Date        : 2023/11/11 14:11
崔为之's avatar
崔为之 committed
9
# @File        : universal.py
崔为之's avatar
崔为之 committed
10 11 12 13
# @Description :
"""


崔为之's avatar
崔为之 committed
14 15
# universal.py
class GlobalConfig:
崔为之's avatar
崔为之 committed
16 17
    """Configuration for the application."""
    def __init__(self):
崔为之's avatar
崔为之 committed
18
        self.config = {}
崔为之's avatar
崔为之 committed
19 20


崔为之's avatar
崔为之 committed
21
# This creates a global instance of the Config class
崔为之's avatar
崔为之 committed
22
global_config = GlobalConfig()