asterai 1.0.0-alpha.3

CLI for asterai - the portable AI compute platform
1
2
3
4
5
6
7
8
9
10
const HELP_STR: &str = include_str!("../../help/help.txt");

pub struct Help;

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