mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-02-08 09:07:38 +00:00
9 lines
174 B
Python
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() |