Change flask directory

This commit is contained in:
2024-10-01 12:15:00 +02:00
parent e044b43451
commit f1225711ce
8 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)