"""Local API entrypoint with the reference application explicitly enabled.""" from __future__ import annotations import os from cyber_agent.application.bootstrap import APPLICATION_FACTORIES_ENV os.environ.setdefault( APPLICATION_FACTORIES_ENV, "examples.application_reference.application:build_reference_components", ) from api_server import app # noqa: E402,F401