13 lines
208 B
Python
13 lines
208 B
Python
import files as f
|
|
import json
|
|
|
|
def readConf():
|
|
try:
|
|
jsonData = json.loads(f.openFile("config.json").read())
|
|
except Exception as e:
|
|
print e
|
|
jasonData = ""
|
|
return jsonData
|
|
|
|
|