File size: 147 Bytes
535107d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import json

with open('/etc/config.json') as config_file:
	config = json.load(config_file)

class Config:
	SECRET_KEY = config.get('SECRET_KEY')