1use crate::api::Problem; 2 3impl From<Problem> for eyre::Error { 4 fn from(err: Problem) -> eyre::Error { 5 eyre::eyre!("{err}") 6 } 7}