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