Files
pillar/attract/application/controllers/__init__.py

7 lines
189 B
Python

from application import app
from application.controllers.shots import index
@app.route("/")
def homepage():
"""Very minimal setup that returns the shot index view"""
return index()