Started moving SFU over to Flask

This commit is contained in:
Dan Dembinski
2019-06-28 14:23:10 -04:00
parent c9e8e3cdbf
commit ecb9757fb5
5 changed files with 184 additions and 135 deletions

7
app/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
from app import routes