proof of concept

This commit is contained in:
Bryan Bailey
2019-11-07 10:21:56 -05:00
commit fbcf6769ce
25 changed files with 258 additions and 0 deletions

7
app/admin/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Blueprint
admin = Blueprint('admin', __name__)
from . import views, errors, forms, models

1
app/admin/errors.py Normal file
View File

@@ -0,0 +1 @@
from flask import Flask

0
app/admin/forms.py Normal file
View File

0
app/admin/models.py Normal file
View File

0
app/admin/views.py Normal file
View File