rusty-commit 1.0.24

Rust-powered AI commit message generator - Write impressive commits in seconds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::config::Config;
use anyhow::Result;

pub fn run_migrations() -> Result<()> {
    // For now, just ensure config exists
    let _config = Config::load()?;

    // Future migrations can be added here
    // Example:
    // migrate_v1_to_v2(&mut config)?;
    // migrate_v2_to_v3(&mut config)?;

    Ok(())
}