mirror of
https://github.com/fergalmoran/home-auto.git
synced 2026-02-15 20:24:26 +00:00
6 lines
139 B
Python
6 lines
139 B
Python
from flask import Blueprint
|
|
|
|
home = Blueprint('home', __name__, template_folder='templates', static_folder='static')
|
|
|
|
from . import routes
|