Ejemplo n.º 1
0
__author__ = 'ejc84332'

from flask import Flask

app = Flask(__name__)

app.config.from_object('config')

from banner_controller import get_connection
app.banner = get_connection()

# todo: moberg had this here. is this the best place?
app.CHANGE_BANNER_TABLES = None

from sync import SyncView
SyncView.register(app)

@app.route('/')
def hello_world():
    return 'Hello World!'