Files
cours/Partie2/Eleve/Projet/control.py
2024-11-23 13:38:17 +01:00

8 lines
135 B
Python

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