from flask import render_templatefrom . import main @main.route('/', methods=['GET', 'POST'])def index(): return render_template('index.html')