Blame view

app/main/__init__.py 128 Bytes
8bd0f3cb   hitier   Fix #25: Flask Bl...
1
2
3
4
5
6
from flask import Blueprint

bp = Blueprint('main', __name__,
               template_folder='templates')

from . import routes