ss14_chemistry_site/reworked/frontend/main.py

10 lines
174 B
Python
Raw Normal View History

2024-04-29 14:15:59 +00:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
2024-04-29 16:07:12 +00:00
def ss14tools():
return render_template("index.html")
if __name__ == "__main__":
app.run()