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