Rename ApiClient to RunClient
https://claude.ai/code/session_01GfccpUReesMY5Rb4FhajhT
change
commit fc2044849959804015c6e43952e859edd652a143
author Claude <noreply@anthropic.com>
date
parent 2a5affb3
diff --git a/quire-ci/src/main.rs b/quire-ci/src/main.rs
index 8fb2511..2218574 100644
--- a/quire-ci/src/main.rs
+++ b/quire-ci/src/main.rs
@@ -202,12 +202,12 @@ impl std::str::FromStr for EventsTarget {
 /// Wraps `reqwest::blocking::Client` with the `Authorization` header
 /// pre-configured and the per-run base URL baked in. Cloning is cheap
 /// (the underlying connection pool is reference-counted).
-struct ApiClient {
+struct RunClient {
     client: reqwest::blocking::Client,
     base_url: String,
 }
 
-impl ApiClient {
+impl RunClient {
     fn new(session: ApiSession) -> Self {
         let mut headers = HeaderMap::new();
         let mut auth = HeaderValue::from_str(&format!("Bearer {}", session.auth_token))
@@ -327,7 +327,7 @@ fn main() -> Result<()> {
                 session: session.clone(),
                 mode: cli.quire.transport,
             };
-            let client = ApiClient::new(session);
+            let client = RunClient::new(session);
 
             let (git_dir, meta, sentry_trace_id) = match transport.mode {
                 TransportMode::Api => client.fetch_bootstrap()?,