6 lines
120 B
Python
6 lines
120 B
Python
import datetime
|
|
|
|
|
|
class Config:
|
|
SECRET_KEY = 'super secret key'
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite'
|