6 lines
141 B
Python
6 lines
141 B
Python
class Config:
|
|
"""配置类"""
|
|
def __init__(self):
|
|
self.debug = False
|
|
self.mode = 'relaxed' # 'relaxed' 或 'strict'
|