mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
6 lines
88 B
Python
6 lines
88 B
Python
|
import yaml
|
||
|
|
||
|
with open("config.yml", 'r') as f:
|
||
|
global conf
|
||
|
conf = yaml.load(f)
|