# __init__.py for finance functions project

from flask import Flask

# config


from project.smfupd.views import market_watch_blueprint
#from project.smfupd.views import smfdb_update_blueprint


app = Flask(__name__, instance_relative_config=True)
app.config.from_pyfile('flask.cfg')


app.register_blueprint(market_watch_blueprint)
#app.register_blueprint(smfdb_update_blueprint)
