We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
github_release.rs
model.rs
1 parent 25a7bb7 commit 3892a40Copy full SHA for 3892a40
mithril-client-cli/src/utils/github_release_retriever/interface.rs
@@ -2,7 +2,7 @@ use async_trait::async_trait;
2
3
use mithril_client::MithrilResult;
4
5
-use super::github_release::GitHubRelease;
+use super::model::GitHubRelease;
6
7
/// Trait for interacting with the GitHub API to retrieve Cardano node release.
8
#[cfg_attr(test, mockall::automock)]
mithril-client-cli/src/utils/github_release_retriever/mod.rs
@@ -1,7 +1,7 @@
1
-mod github_release;
mod interface;
+mod model;
mod reqwest;
-pub use github_release::*;
pub use interface::*;
+pub use model::*;
pub use reqwest::*;
mithril-client-cli/src/utils/github_release_retriever/github_release.rs renamed to mithril-client-cli/src/utils/github_release_retriever/model.rs
0 commit comments