sacn_accout_system/server/cfg.py

11 lines
190 B
Python
Raw Normal View History

2024-08-17 11:25:51 +08:00
import tomllib
with open("config.toml", "rb") as f:
config = tomllib.load(f)
2024-08-25 20:51:14 +08:00
def reload():
global config
with open("config.toml", "rb") as f:
config = tomllib.load(f)