7 lines
108 B
Python
7 lines
108 B
Python
|
import json
|
||
|
|
||
|
CREDFILE = ".credentials.json"
|
||
|
|
||
|
with open('.config.json', 'r') as f:
|
||
|
config = json.load(f)
|