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:
Fabian Grünbichler 2022-04-29 11:17:26 +02:00 committed by Thomas Lamprecht
parent df768ebea9
commit aa07391764
1 changed files with 2 additions and 2 deletions

View File

@ -469,7 +469,7 @@ async fn pull_snapshot(
Ok(())
}
pub async fn pull_snapshot_from(
async fn pull_snapshot_from(
worker: &WorkerTask,
reader: Arc<BackupReader>,
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,
client: &HttpClient,
params: &PullParameters,