Source code for help

from flask import Blueprint, render_template

help = Blueprint("help", __name__, static_folder="../static")


[docs]@help.route("/") def index(): return render_template("help.html")