from flask import Blueprint, render_template, send_from_directory

main = Blueprint('main', __name__)

@main.route('/')
def index():
    return render_template('index.html')
