This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-30 20:33:32 +08:00

10 lines
222 B
Python

from pathlib import Path
import yaml
def config():
settings_file = str(Path(__file__).parent.absolute()) + '/settings.yml'
with open(settings_file, 'r') as f:
return yaml.load(f, Loader=yaml.FullLoader)