//! Shared output formatting utilities for all response types.
/// Format the "total: N" header for human-readable output
pub fn format_total_header(total: u64) -> String {
format!("total: {}", total)
}
/// Format the "partial: true" footer for human-readable output
pub fn format_partial_footer() -> &'static str {
"partial: true"
}