"""Application.""" from abacus_worksheet.api import create_app from abacus_worksheet.config import Config from abacus_worksheet.connectors.sentry import init_sentry if Config.SENTRY: init_sentry(Config.SENTRY) app = create_app(Config)