"""Application.""" import sentry_sdk from participant import config # noqa from participant import api from participant.handlers.artist_links import * # noqa from participant.handlers.base import * # noqa from participant.handlers.label_participant import * # noqa from participant.handlers.network_participant import * # noqa from participant.handlers.product import * # noqa from participant.handlers.service import * # noqa from participant.handlers.track import * # noqa from sentry_sdk.integrations.flask import FlaskIntegration if config.SENTRY_DSN: sentry_sdk.init(dsn=config.SENTRY_DSN, integrations=[FlaskIntegration()]) app = api.app