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

7 lines
189 B
Python
Raw Normal View History

2014-04-20 12:09:16 +02:00
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()