sacn_comments/server/cfg.py

13 lines
215 B
Python
Raw Permalink Normal View History

2024-09-09 22:47:58 +08:00
import tomllib
import os
with open("config/config.toml", "rb") as f:
config = tomllib.load(f)
def reload():
global config
with open("config/config.toml", "rb") as f:
config = tomllib.load(f)