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