greentic-setup-dev 1.1.28794221189

End-to-end bundle setup engine for the Greentic platform — pack discovery, QA-driven configuration, secrets persistence, and bundle lifecycle management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CLI command implementations for greentic-setup.

mod doctor;
mod inspect;
mod lifecycle;
mod setup;

pub use doctor::doctor;
pub use inspect::{build, list, status};
pub use lifecycle::{add, init, remove};
pub use setup::{
    execute_pending_oauth_device_actions, print_pending_setup_actions, setup, setup_migrate,
    setup_next, setup_reset, setup_retry, setup_status, update, wait_for_pending_oauth_callbacks,
};