dash-stack/dash/admin/__init__.py
kelepirci 7f9dd1fa14 Removed Roles and Added Admin Pages
Old roles systems was not practical and too complicated.
That is why I have removed the old system and starting new one.
Meantime I have added a new admin application for admin functions.
2016-08-07 07:51:38 -04:00

5 lines
86 B
Python

from flask import Blueprint
admin = Blueprint('admin', __name__)
from . import views