5 lines
94 B
Python
5 lines
94 B
Python
import os
|
|
|
|
class Config(object):
|
|
SECRET_KEY = os.environ.get("NORTHPASS") or "north-pass"
|