style: fix cargo warnings (imports, dead_code)
Some checks failed
CI / Check (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Formatting (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Release Build (push) Has been cancelled

This commit is contained in:
2026-03-03 15:22:24 -05:00
parent c3dda74113
commit 8d1cbd28a8

View File

@@ -15,11 +15,10 @@ pub fn router(state: AppState) -> Router {
state.clone(),
rate_limiting::middleware::rate_limit_middleware,
))
.with_state(state)
}
}
.with_state(state)
}
/// GET /v1/models — OpenAI-compatible model listing.
/// Returns all models from enabled providers so clients like Open WebUI can
/// discover which models are available through the proxy.