Skip to content

Commit 3892a40

Browse files
committed
refactor(client-cli): rename github_release.rs to model.rs
1 parent 25a7bb7 commit 3892a40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mithril-client-cli/src/utils/github_release_retriever/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use async_trait::async_trait;
22

33
use mithril_client::MithrilResult;
44

5-
use super::github_release::GitHubRelease;
5+
use super::model::GitHubRelease;
66

77
/// Trait for interacting with the GitHub API to retrieve Cardano node release.
88
#[cfg_attr(test, mockall::automock)]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
mod github_release;
21
mod interface;
2+
mod model;
33
mod reqwest;
44

5-
pub use github_release::*;
65
pub use interface::*;
6+
pub use model::*;
77
pub use reqwest::*;

0 commit comments

Comments
 (0)