7 lines
120 B
Python
7 lines
120 B
Python
from app_instance import api
|
|
|
|
|
|
@api.route("/")
|
|
def index(req, resp):
|
|
resp.content = api.template('home/index.html')
|