Files
TakosTest/tacotest.py
2024-10-16 10:55:13 -07:00

17 lines
265 B
Python

from flask import Flask, render_template, request, send_file, jsonify
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run()
#app.run(host="0.0.0", port=int(3000), debug=True)