omne_cli/defaults.rs
1//! Shared default constants.
2//!
3//! Single source of truth for values that appear in multiple command
4//! handlers. Tests assert against these constants, not against their
5//! duplicated string literals, so a change propagates everywhere.
6
7/// Default kernel source used by `init` when no override is provided.
8/// Format: `org/repo` matching the GitHub releases API convention.
9pub const DEFAULT_KERNEL_SOURCE: &str = "omne-org/omne";