mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-27 04:25:06 +08:00
10 lines
188 B
Rust
10 lines
188 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
#[derive(Debug, Error)]
|
||
|
pub enum Error {
|
||
|
#[error(transparent)]
|
||
|
Io(#[from] std::io::Error),
|
||
|
#[error(transparent)]
|
||
|
Serde(#[from] serde_json::Error),
|
||
|
}
|