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