4 lines
94 B
Python
4 lines
94 B
Python
import os
|
|
|
|
class Config:
|
|
SECRET_KEY = os.environ.get('SECRET_KEY') or 'you-will-never-guess' |