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