NatLibFi/Annif

View on GitHub
annif/views.py

Summary

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

bp = Blueprint("app", __name__)


@bp.route("/")
def home():
    return render_template("home.html")