thoughts-bin 0.1.12

CLI for flexible thought management using filesystem mounts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use anyhow::Result;
use colored::Colorize;

pub async fn execute() -> Result<()> {
    println!(
        "{} active mounts to match configuration...",
        "Updating".green()
    );

    crate::mount::auto_mount::update_active_mounts().await?;

    println!("\n{} Mount update complete", "".green());
    println!("Run {} to see current status", "thoughts status".cyan());

    Ok(())
}