Files
cours/Partie2/Eleve/Projet/control.py
2025-04-01 14:28:43 +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")