fix(forge/mock): visibility on methods
This commit is contained in:
parent
3bbe9abbd9
commit
af221f8a2f
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
pub(crate) async fn load(
|
pub async fn load(
|
||||||
_details: &crate::server::config::RepoDetails,
|
_details: &crate::server::config::RepoDetails,
|
||||||
_net: &kxio::network::Network,
|
_net: &kxio::network::Network,
|
||||||
) -> Result<
|
) -> Result<
|
||||||
|
|
|
@ -7,7 +7,7 @@ use crate::server::{
|
||||||
|
|
||||||
pub mod config;
|
pub mod config;
|
||||||
|
|
||||||
pub(crate) async fn get_commit_histories(
|
pub async fn get_commit_histories(
|
||||||
_repo_details: &RepoDetails,
|
_repo_details: &RepoDetails,
|
||||||
_config: &RepoConfig,
|
_config: &RepoConfig,
|
||||||
_net: &Network,
|
_net: &Network,
|
||||||
|
@ -15,7 +15,7 @@ pub(crate) async fn get_commit_histories(
|
||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) async fn get_commit_status(
|
pub async fn get_commit_status(
|
||||||
_clone: super::Commit,
|
_clone: super::Commit,
|
||||||
_repo_details: &RepoDetails,
|
_repo_details: &RepoDetails,
|
||||||
_net: &Network,
|
_net: &Network,
|
||||||
|
|
Loading…
Reference in a new issue