Files
J2S1-Kobuki/web/app.py
2024-09-26 15:31:41 +02:00

10 lines
186 B
Python

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)