albertyw/base-flask

View on GitHub
app/routes.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from flask import Blueprint, render_template
from varsnap import varsnap


handlers = Blueprint('handlers', __name__)


@handlers.route("/")
@varsnap
def index() -> str:
    return render_template("index.htm")