6 lines
105 B
Python
6 lines
105 B
Python
from flask import render_template
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html')
|