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