1 2 3 4 5 6 7 8 9 10
use anyhow::Result; use std::path::PathBuf; use crate::backfill; use crate::cli::BackfillArgs; pub fn run_backfill(args: BackfillArgs) -> Result<()> { let repo_path = PathBuf::from(&args.target); backfill::run(&args, &repo_path) }