mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2025-07-05 12:58:05 +00:00
7 lines
137 B
Python
7 lines
137 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return render_template("front_page.html")
|