devist 0.15.0

Project bootstrap CLI for AI-assisted development. Spin up new projects from templates, manage backends, and keep your codebase comprehensible.
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use console::style;

pub fn run() -> Result<()> {
    println!("{}", style("devist").bold());
    println!("  version     {}", env!("CARGO_PKG_VERSION"));
    println!("  description {}", env!("CARGO_PKG_DESCRIPTION"));
    println!("  repo        {}", env!("CARGO_PKG_REPOSITORY"));
    Ok(())
}