mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
9 lines
197 B
Python
9 lines
197 B
Python
from flask import render_template
|
|
from WebHostLib import app, cache
|
|
|
|
|
|
@cache.memoize(timeout=300)
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
def landing():
|
|
return render_template("landing.html")
|