mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
11 lines
164 B
Python
11 lines
164 B
Python
from flask import Flask
|
|
|
|
|
|
app = Flask(__name__, static_folder=".", static_url_path="")
|
|
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return app.send_static_file("index.html")
|
|
|