Fix import order for nested folders to prevent foreign key constraint error

This commit is contained in:
Gregory Schier
2024-09-06 06:20:27 -07:00
parent c663537ca9
commit 021dceeac5
10 changed files with 387 additions and 235 deletions

View File

@@ -2,9 +2,9 @@ use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error("SQL error")]
#[error("SQL error: {0}")]
SqlError(#[from] rusqlite::Error),
#[error("JSON error")]
#[error("JSON error: {0}")]
JsonError(#[from] serde_json::Error),
#[error("unknown error")]
Unknown,