flask-skaf/app/routes.py

8 lines
147 B
Python
Raw Permalink Normal View History

2023-07-21 16:43:49 +00:00
from flask import render_template
from . import app
@app.route("/", methods=["GET"])
def index():
return render_template("pages/index.html")