from app.api.config import config from app.system.models import APIPlatform router = None _PLATFORM = config("BAPI_PLATFORM", default=APIPlatform.RASPIBLITZ) if _PLATFORM == APIPlatform.RASPIBLITZ: from app.setup.impl.raspiblitz.router import router # noqa: F401