8 lines
105 B
Python
8 lines
105 B
Python
import json
|
|
|
|
f = open('./config/config.json')
|
|
|
|
data = json.load(f)
|
|
|
|
database = data.get("database");
|