rpi-rgb/app/index.py

9 lines
177 B
Python
Raw Normal View History

2023-06-05 22:33:36 +02:00
from flask import render_template, Blueprint
index_blueprint = Blueprint('index', __name__)
@index_blueprint.route('/')
def index():
return render_template('index.html')