Stakpak: Your DevOps AI Agent. Generate infrastructure code, debug Kubernetes, configure CI/CD, automate deployments, without giving an LLM the keys to production.
//! Navigation state management for onboarding flow
/// Navigation result indicating what action to take
#[derive(Debug, Clone, Copy, PartialEq)]pubenumNavResult<T> {/// Continue forward with selected value
Forward(T),/// Go back to previous step
Back,/// Cancel/exit
Cancel,}