Updated name to be unique. Hopefully not a problem

This commit is contained in:
Connor Johnstone
2026-03-17 14:44:16 -04:00
parent 305ddff278
commit 2997d7e4f9
5 changed files with 136 additions and 2 deletions

View File

@@ -13,6 +13,9 @@ pub enum DbError {
#[error("serialization error: {0}")]
Serialization(#[from] serde_json::Error),
#[error("{0}")]
Other(String),
}
pub type DbResult<T> = Result<T, DbError>;