mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-02-08 09:07:38 +00:00
6 lines
132 B
Python
6 lines
132 B
Python
from flask import Flask, render_template
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello_world():
|
|
render_template("index.html") |