asimov-directory 25.2.0

ASIMOV Software Development Kit (SDK) for Rust
1
2
3
4
5
6
7
8
9
10
// cargo run --package asimov-directory --example list_programs

use asimov_directory::fs::StateDirectory;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let _programs = StateDirectory::home()?.programs()?;
    // TODO
    Ok(())
}