8 lines
No EOL
125 B
Python
8 lines
No EOL
125 B
Python
from app import app
|
|
from flask import render_template
|
|
|
|
|
|
|
|
@app.route('/')
|
|
def home():
|
|
return render_template('index.html') |