"""Application.""" # DataDog APM bootstrap code import ddtrace.bootstrap.sitecustomize # noqa import sentry_sdk from artwork import config # noqa from artwork import handlers # noqa from artwork import api from sentry_sdk.integrations.flask import FlaskIntegration if config.SENTRY_DSN: sentry_sdk.init(dsn=config.SENTRY_DSN, integrations=[FlaskIntegration()]) app = api.app