1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-04 23:58:58 +00:00
FediBooks/webui.py
2019-08-27 20:36:54 +10:00

7 lines
137 B
Python

from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("front_page.html")