asterai 1.0.0-alpha.14

CLI for asterai - the portable AI compute platform
1
2
3
4
5
6
7
8
9
10
const VERSION: &str = env!("CARGO_PKG_VERSION");

pub struct Version;

impl Version {
    pub fn execute() -> eyre::Result<()> {
        println!("{VERSION}");
        Ok(())
    }
}