Added endpoint for controlling kobuki

This commit is contained in:
2024-10-01 16:35:45 +02:00
parent f1225711ce
commit 0dba5f3d93

View File

@@ -6,5 +6,12 @@ app = Flask(__name__)
def index():
return render_template('index.html')
@app.route('/control', methods=['POST'])
def control():
return("hello")
if __name__ == '__main__':
app.run(debug=True)