Skip to main content

ignition_core/actions/
mod.rs

1//! Actions — the shared verb layer (ARCHITECTURE.md layering invariant:
2//! CLI handlers and, from Phase 6, the TUI both call these).
3//!
4//! Actions NEVER print — they return serde models; rendering belongs to the
5//! binary (and later the TUI).
6
7pub mod adopt;
8pub mod apicall;
9pub mod backup;
10pub mod connections;
11pub mod diagnostics;
12pub mod doctor;
13pub mod eam;
14pub mod edit;
15pub mod gan;
16pub mod inspect;
17pub mod license;
18pub mod lint;
19pub mod logs;
20pub mod profile;
21pub mod projects;
22pub mod redundancy;
23pub mod resources;
24pub mod restart;
25pub mod rig;
26pub mod script;
27pub mod sessions;
28pub mod tag_loss;
29pub mod tags;
30pub mod version;
31pub mod webdev;
32pub mod workspace;