1
2
3
4
5
6
7
8
9
//! Utility functions for error handling.

use crate::Result;

/// Install a `color-eyre` as an error/panic handler.
pub fn install() -> Result<()> {
    color_eyre::install()?;
    Ok(())
}