rpi-rgb/app/index.py
Finn Christiansen f7ede63681
Some checks failed
CSS Linter / CSS-Lint (push) Failing after 23s
Javascript Linter / Javascript-Lint (push) Successful in 10s
Python formatting PEP8 / Pyhton-PEP8 (push) Successful in 13s
introduce blueprints and unit tests
2023-06-05 22:33:36 +02:00

8 lines
177 B
Python

from flask import render_template, Blueprint
index_blueprint = Blueprint('index', __name__)
@index_blueprint.route('/')
def index():
return render_template('index.html')