mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 11:42:44 +08:00
24 lines
542 B
Python
24 lines
542 B
Python
from . import model as file_model
|
|
from ..utils import context
|
|
|
|
|
|
class ConfigManager:
|
|
"""配置文件管理器"""
|
|
|
|
file: file_model.ConfigFile = None
|
|
"""配置文件实例"""
|
|
|
|
data: dict = None
|
|
"""配置数据"""
|
|
|
|
def __init__(self, cfg_file: file_model.ConfigFile) -> None:
|
|
self.file = cfg_file
|
|
self.data = {}
|
|
context.set_config_manager(self)
|
|
|
|
async def load_config(self):
|
|
self.data = await self.file.load()
|
|
|
|
async def dump_config(self):
|
|
await self.file.save(self.data)
|