pull: remove unnecessary `pub` visibility
pull_store is the entrypoint used by other code, the rest does not need to be visible at all. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
df768ebea9
commit
aa07391764
|
@ -469,7 +469,7 @@ async fn pull_snapshot(
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn pull_snapshot_from(
|
async fn pull_snapshot_from(
|
||||||
worker: &WorkerTask,
|
worker: &WorkerTask,
|
||||||
reader: Arc<BackupReader>,
|
reader: Arc<BackupReader>,
|
||||||
tgt_store: Arc<DataStore>,
|
tgt_store: Arc<DataStore>,
|
||||||
|
@ -556,7 +556,7 @@ impl std::fmt::Display for SkipInfo {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn pull_group(
|
async fn pull_group(
|
||||||
worker: &WorkerTask,
|
worker: &WorkerTask,
|
||||||
client: &HttpClient,
|
client: &HttpClient,
|
||||||
params: &PullParameters,
|
params: &PullParameters,
|
||||||
|
|
Loading…
Reference in New Issue