cdk-ansible-cli 0.2.8

cdk-ansible is a tool to generate Ansible playbooks from Rust code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![expect(clippy::print_stderr, reason = "In main function")]
#![expect(clippy::use_debug, reason = "In main function")]

use cdk_ansible_cli::run;

/// Main entry point for end users.
pub fn main() -> std::result::Result<(), i32> {
    if let Err(e) = run() {
        eprintln!("Error: {e:?}");
        return Err(1);
    }
    Ok(())
}