mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-21 22:22:19 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import yaml
|
|
|
|
cnf = {}
|
|
with open('data/config.yaml') as config_file:
|
|
cnf = yaml.load(config_file) |