mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-05-27 10:29:55 -07:00
WebHost: Move module into WebHostLib to prevent shadowing WebHost.py
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user