feat: install error trap from color_eyre
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 1m29s
Test / build (map[name:stable]) (push) Successful in 1m54s
Release Please / Release-plz (push) Failing after 24s

This commit is contained in:
Paul Campbell 2024-11-29 14:31:40 +00:00
parent 4e12348d30
commit 111d9c2090

View file

@ -4,5 +4,7 @@ use color_eyre::Result;
#[tokio::main] #[tokio::main]
#[cfg_attr(test, mutants::skip)] #[cfg_attr(test, mutants::skip)]
async fn main() -> Result<()> { async fn main() -> Result<()> {
color_eyre::install()?;
Ok(()) Ok(())
} }