forked from kemitix/git-next
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,
|
||||
_net: &kxio::network::Network,
|
||||
) -> Result<
|
||||
|
|
|
@ -7,7 +7,7 @@ use crate::server::{
|
|||
|
||||
pub mod config;
|
||||
|
||||
pub(crate) async fn get_commit_histories(
|
||||
pub async fn get_commit_histories(
|
||||
_repo_details: &RepoDetails,
|
||||
_config: &RepoConfig,
|
||||
_net: &Network,
|
||||
|
@ -15,7 +15,7 @@ pub(crate) async fn get_commit_histories(
|
|||
todo!()
|
||||
}
|
||||
|
||||
pub(crate) async fn get_commit_status(
|
||||
pub async fn get_commit_status(
|
||||
_clone: super::Commit,
|
||||
_repo_details: &RepoDetails,
|
||||
_net: &Network,
|
||||
|
|
Loading…
Reference in a new issue