LiteyukiBot/src/utils/config.py

11 lines
223 B
Python
Raw Normal View History

2024-03-18 10:21:56 +00:00
from yaml import load, FullLoader
2024-03-18 16:27:40 +00:00
config = None
2024-03-18 10:21:56 +00:00
def load_from_yaml(file: str) -> dict:
2024-03-18 16:27:40 +00:00
global config
2024-03-18 10:21:56 +00:00
with open(file, 'r', encoding='utf-8') as f:
2024-03-18 16:27:40 +00:00
config = load(f, Loader=FullLoader)
return config