mirror of
https://github.com/fergalmoran/home-auto.git
synced 2026-02-16 12:45:28 +00:00
6 lines
143 B
Python
6 lines
143 B
Python
from flask import Blueprint
|
|
|
|
action = Blueprint('action', __name__, template_folder='templates', static_folder='static')
|
|
|
|
from . import routes
|