mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-02-08 17:17:37 +00:00
10 lines
174 B
Python
10 lines
174 B
Python
from flask import Flask, render_template
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def ss14tools():
|
|
return render_template("index.html")
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|