TeraBot / app.py
sanch1tx's picture
Upload 15 files
93fe4f5 verified
raw
history blame contribute delete
201 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)