PCv5/app/routes/index.py

7 lines
118 B
Python
Raw Normal View History

2019-02-03 16:52:42 +01:00
from app import app
2019-02-03 16:20:05 +01:00
from app.utils.render import render
@app.route('/')
def index():
return render('index.html')