KankenOnline/kanken_online/forum.py

9 lines
192 B
Python
Raw Normal View History

2024-10-14 10:54:07 +00:00
from flask import Blueprint, render_template
blueprint = Blueprint("forum", __name__, url_prefix="/forum")
@blueprint.route("/")
def index():
return render_template("forum/index.html")