from flask import Flask
from flask_bootstrap import Bootstrap

app = Flask(__name__)

from app import routes

bootstrap = Bootstrap(app)