SimpleAES / views /__init__.py
SFM2001's picture
move design folders to root
36d1262
from flask import Blueprint
auth_bp = Blueprint('auth', __name__, template_folder='templates')
dashboard_bp = Blueprint('dashboard', __name__, template_folder='templates')
infer_bp = Blueprint('infer', __name__, template_folder='templates')
about_bp = Blueprint('about', __name__, template_folder='templates')
error_bp = Blueprint('error', __name__, template_folder='templates')
from . import auth, dashboard, infer, about, error