""" Application =========== """ from artist import api, config from artist import handlers # noqa from artist.connectors import sentry if config.SENTRY: api.app.config['SENTRY_DSN'] = config.SENTRY sentry.init_sentry(config.SENTRY) app = api.app