Files
cours/high-school/Partie2/Eleve/Projet/control.py
2025-09-26 11:16:23 +02:00

9 lines
136 B
Python

from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")