//! pinto — A lightweight CLI/TUI backlog/kanban board for Scrum.
//!
//! This crate provides the domain and service layers used by the CLI (`main.rs`) and TUI.
//! See `docs/DESIGN.md` for detailed design.
// Consumers refer to module paths such as `pinto::backlog::…`; keep the module boundaries explicit
// rather than flattening the crate root. `config` remains private to the crate, while the storage
// facade re-exports the `StorageBackend` type needed by selection and migration APIs.
/// Crate version (synced with `Cargo.toml`).
pub const VERSION: &str = env!;