Start to create views

This commit is contained in:
Rebecca Law
2015-11-20 16:22:44 +00:00
parent b737af3fee
commit d6c81d581d
6 changed files with 51 additions and 6 deletions

6
app/main/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from flask import Blueprint
main = Blueprint('main', __name__)
from .views import index