diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2020-11-05 10:55:38 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2020-11-05 10:55:38 +0000 |
| commit | 9e2cb802005887cbd2480ef02a48603e1d174ca3 (patch) | |
| tree | c61ea63eb9d8ce8b831273947e8c25efaa379024 /frest/database.py | |
| parent | b15544d35f53150d7969a07f502aa76493f2ad22 (diff) | |
fix: default imported modules
Diffstat (limited to 'frest/database.py')
| -rw-r--r-- | frest/database.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frest/database.py b/frest/database.py new file mode 100644 index 0000000..176cd52 --- /dev/null +++ b/frest/database.py @@ -0,0 +1,4 @@ +from flask_sqlalchemy import SQLAlchemy + +db = SQLAlchemy() +config = {"DATABASE_URI": "sqlite:///database.db"} |
