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