//! Project-wide constants used across multiple modules.
//!
//! This module centralizes constant definitions to avoid duplication and ensure
//! consistency across the codebase.
/// Spinner animation characters for progress indicators
pub const SPINNER_CHARS: & = &;
/// File extension for sidecar metadata files
pub const SIDECAR_EXTENSION: &str = "md";
/// Directories to skip during file system traversal
pub const SKIP_DIRECTORIES: & = &;
/// Supported audio file extensions
pub const AUDIO_EXTENSIONS: & = &;
/// YAML frontmatter delimiter
pub const YAML_DELIMITER: &str = "---\n";