5 lines
93 B
Python
5 lines
93 B
Python
import os
|
|
|
|
class Config:
|
|
SECRET_KEY = os.environ.get("SECRET_KEY", "default_secret_key")
|