mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-03-23 12:23:43 +00:00
fix: fmt
This commit is contained in:
parent
f817279d33
commit
f400684d59
@ -19,7 +19,7 @@ members = [
|
||||
"integration_tests/proc_macro_test_attribute",
|
||||
"examples/program_deployment",
|
||||
"examples/program_deployment/methods",
|
||||
"examples/program_deployment/methods/guest",
|
||||
"examples/program_deployment/methods/guest",
|
||||
"bedrock_client",
|
||||
]
|
||||
|
||||
|
||||
@ -12,4 +12,4 @@ thiserror.workspace = true
|
||||
url.workspace = true
|
||||
futures.workspace = true
|
||||
serde_json.workspace = true
|
||||
common-http-client.workspace = true
|
||||
common-http-client.workspace = true
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
use anyhow::Result;
|
||||
use common_http_client::CommonHttpClient;
|
||||
pub use common_http_client::BasicAuthCredentials;
|
||||
pub use common_http_client::Error;
|
||||
pub use common_http_client::{BasicAuthCredentials, Error};
|
||||
use reqwest::Client;
|
||||
|
||||
// Simple wrapper
|
||||
@ -15,7 +14,8 @@ impl BedrockClient {
|
||||
.timeout(std::time::Duration::from_secs(60))
|
||||
.build()?;
|
||||
|
||||
Ok(BedrockClient(CommonHttpClient::new_with_client(client, auth)))
|
||||
Ok(BedrockClient(CommonHttpClient::new_with_client(
|
||||
client, auth,
|
||||
)))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user