cli_xtask/
error_handler.rs

1//! Utility functions for error handling.
2
3use crate::Result;
4
5/// Install a `color-eyre` as an error/panic handler.
6pub fn install() -> Result<()> {
7    color_eyre::install()?;
8    Ok(())
9}