From 9e2cb802005887cbd2480ef02a48603e1d174ca3 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 5 Nov 2020 11:55:38 +0100 Subject: fix: default imported modules --- frest/database.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 frest/database.py (limited to 'frest/database.py') 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"} -- cgit v1.2.3-71-g8e6c