Files
home-auto/pages/home/__init__.py
2017-12-27 00:44:10 +00:00

6 lines
139 B
Python

from flask import Blueprint
home = Blueprint('home', __name__, template_folder='templates', static_folder='static')
from . import routes