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