ss14_chemistry_site/reworked/frontend/main.py
2024-04-29 21:15:59 +07:00

6 lines
132 B
Python

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