Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Feb 10, 2025
1 parent 54e5cbf commit f8f6087
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/lib/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,9 @@ pub fn build_client() -> Result<Client, Box<dyn std::error::Error>> {
let ca = Certificate::from_pem(CERT2)?;
builder = builder.add_root_certificate(ca);

Ok(builder.build()?)
let client = builder.build()?

eprintln!("Client built {:?}", client);

Ok(client)
}

0 comments on commit f8f6087

Please sign in to comment.