This commit is contained in:
2026-08-13 09:44:46 -04:00
parent f852da4f4e
commit a723b52191
11 changed files with 63 additions and 29 deletions
+7 -1
View File
@@ -11,7 +11,10 @@ pub(crate) enum Error {
Storage(#[from] oxigraph::store::StorageError),
#[error(transparent)]
IriParse(#[from] oxigraph::model::IriParseError),
ParseIri(#[from] oxigraph::model::IriParseError),
#[error(transparent)]
ParseUrl(#[from] url::ParseError),
#[error(transparent)]
RdfSyntax(#[from] oxigraph::io::RdfSyntaxError),
@@ -36,4 +39,7 @@ pub(crate) enum Error {
#[error(transparent)]
Join(#[from] tokio::task::JoinError),
#[error(transparent)]
TonicTransport(#[from] tonic::transport::Error),
}