7 lines
185 B
Python
7 lines
185 B
Python
from application import app
|
|
from application.modules.shots import index
|
|
|
|
@app.route("/")
|
|
def homepage():
|
|
"""Very minimal setup that returns the shot index view"""
|
|
return index() |