stakpak 0.3.68

Stakpak: Your DevOps AI Agent. Generate infrastructure code, debug Kubernetes, configure CI/CD, automate deployments, without giving an LLM the keys to production.
1
2
3
4
5
6
7
8
9
10
11
12
//! Navigation state management for onboarding flow

/// Navigation result indicating what action to take
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum NavResult<T> {
    /// Continue forward with selected value
    Forward(T),
    /// Go back to previous step
    Back,
    /// Cancel/exit
    Cancel,
}