mirror of
https://github.com/ProgramSnail/python_web_proj_2021.git
synced 2025-12-07 03:08:42 +00:00
7 lines
No EOL
131 B
Python
7 lines
No EOL
131 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask("App")
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template("index.html") |