Skip to main content

track/utils/
mod.rs

1//! Utility modules for the track CLI.
2//!
3//! This module contains utility functions and types used throughout the application,
4//! including error handling and common helper functions.
5
6pub mod error;
7
8pub use error::{Result, TrackError};