11 lines
198 B
Python
11 lines
198 B
Python
![]() |
import json
|
||
|
|
||
|
config = None
|
||
|
with open("config.json") as file:
|
||
|
config = json.load(file)
|
||
|
|
||
|
if config is None:
|
||
|
raise "Failed to load config file"
|
||
|
|
||
|
def get(key: str) -> str:
|
||
|
return config[key]
|