from flask import Flask,current_app

app = Flask(__name__)
app.config['SECRET_KEY'] = 'something-super-secret'

from app import routes
