This commit is contained in:
2026-08-12 14:11:47 -04:00
parent 79894f654d
commit f852da4f4e
48 changed files with 4379 additions and 779 deletions
+4 -1
View File
@@ -19,6 +19,9 @@ pub(crate) enum Error {
#[error(transparent)]
ParseInt(#[from] std::num::ParseIntError),
#[error(transparent)]
Graph(#[from] gl_graph::Error),
#[error(transparent)]
Search(#[from] gl_search::SearchError),
@@ -33,4 +36,4 @@ pub(crate) enum Error {
#[error(transparent)]
Join(#[from] tokio::task::JoinError),
}
}