8 lines
120 B
Python
8 lines
120 B
Python
|
import json
|
||
|
|
||
|
config = None
|
||
|
|
||
|
with open("config.json", "r") as fp:
|
||
|
print("loading config")
|
||
|
config = json.load(fp)
|