Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from flask import Blueprint, render_template |
||
2 | |||
3 | bp = Blueprint("app", __name__) |
||
4 | |||
5 | |||
6 | @bp.route("/") |
||
7 | def home(): |
||
8 | return render_template("home.html") |
||
9 |