Files
pillar/attract/application/modules/main/__init__.py

7 lines
185 B
Python
Raw Normal View History

2014-04-20 12:09:16 +02:00
from application import app
2015-02-01 17:56:09 +00:00
from application.modules.shots import index
2014-04-20 12:09:16 +02:00
@app.route("/")
def homepage():
"""Very minimal setup that returns the shot index view"""
return index()