Skip to main content

outlayer_cli/commands/
about.rs

1pub fn about() {
2    let banner = r#"
3     ██████╗  ██╗   ██╗ ████████╗ ██╗       █████╗  ██╗   ██╗ ████████╗ ██████╗
4    ██╔═══██╗ ██║   ██║ ╚══██╔══╝ ██║      ██╔══██╗ ╚██╗ ██╔╝ ██╔═════╝ ██╔══██╗
5    ██║   ██║ ██║   ██║    ██║    ██║      ███████║  ╚████╔╝  ██████╗   ██████╔╝
6    ██║   ██║ ██║   ██║    ██║    ██║      ██╔══██║   ╚██╔╝   ██╔═══╝   ██╔══██╗
7    ╚██████╔╝ ╚██████╔╝    ██║    ███████╗ ██║  ██║    ██║    ████████╗ ██║  ██║
8     ╚═════╝   ╚═════╝     ╚═╝    ╚══════╝ ╚═╝  ╚═╝    ╚═╝    ╚═══════╝ ╚═╝  ╚═╝
9
10    Verifiable OS for Agents. Deploy, run, and manage autonomous agents.
11    https://outlayer.ai
12"#;
13
14    println!("{banner}");
15    println!("    Version  {}", env!("CARGO_PKG_VERSION"));
16    println!();
17}