Skip to content

Commit f0e1c37

Browse files
committed
feature(protocol-config): rename http to http_client
1 parent 247f330 commit f0e1c37

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
File renamed without changes.

internal/mithril-protocol-config/src/http/http_impl.rs renamed to internal/mithril-protocol-config/src/http_client/http_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::{collections::BTreeSet, sync::Arc, time::Duration};
33

44
use crate::{
55
HTTP_REQUEST_TIMEOUT_DURATION,
6-
http::aggregator_client::{AggregatorClient, AggregatorHTTPClient},
6+
http_client::aggregator_client::{AggregatorClient, AggregatorHTTPClient},
77
interface::MithrilNetworkConfigurationProvider,
88
model::MithrilNetworkConfiguration,
99
};
File renamed without changes.

internal/mithril-protocol-config/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// HTTP request timeout duration in milliseconds
22
const HTTP_REQUEST_TIMEOUT_DURATION: u64 = 30000;
3-
pub mod http;
3+
pub mod http_client;
44
pub mod interface;
55
pub mod model;
66

0 commit comments

Comments
 (0)