summaryrefslogtreecommitdiffstats
path: root/src/command/sync.rs
blob: f8bfd5e265116680a272b6eaf9eeee8531d60729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use eyre::Result;

use atuin_client::database::Database;
use atuin_client::settings::Settings;
use atuin_client::sync;

pub async fn run(
    settings: &Settings,
    force: bool,
    db: &mut (impl Database + Send + Sync),
) -> Result<()> {
    sync::sync(settings, force, db).await?;
    println!(
        "Sync complete! {} items in database, force: {}",
        db.history_count().await?,
        force
    );
    Ok(())
}