Files
J2S1-Kobuki/src/Python/flask/web/app.py

18 lines
267 B
Python

from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/control', methods=['POST'])
def control():
return("hello")
if __name__ == '__main__':
app.run(debug=True)