5 lines
118 B
Python
5 lines
118 B
Python
from flask import Blueprint
|
|
|
|
home = Blueprint('home', __name__, template_folder='templates')
|
|
from . import routes
|