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