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