mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 11:07:24 +08:00
7 lines
166 B
Python
7 lines
166 B
Python
|
from yaml import load, FullLoader
|
||
|
|
||
|
|
||
|
def load_from_yaml(file: str) -> dict:
|
||
|
with open(file, 'r', encoding='utf-8') as f:
|
||
|
return load(f, Loader=FullLoader)
|