ss14_chemistry_site/reworked/frontend/main.py
dttric bb182fed32
😴
2024-04-29 23:07:12 +07:00

9 lines
174 B
Python

from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def ss14tools():
render_template("./index.html")
if __name__ == "__main__":
app.run()