diff options
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs index 513b51b..006fcdb 100644 --- a/src/error.rs +++ b/src/error.rs | |||
@@ -5,10 +5,11 @@ use axum::response::{IntoResponse, Response}; | |||
5 | use axum::Json; | 5 | use axum::Json; |
6 | use mac_address::MacParseError; | 6 | use mac_address::MacParseError; |
7 | use serde_json::json; | 7 | use serde_json::json; |
8 | use utoipa::ToSchema; | ||
8 | use std::io; | 9 | use std::io; |
9 | use tracing::error; | 10 | use tracing::error; |
10 | 11 | ||
11 | #[derive(Debug, thiserror::Error)] | 12 | #[derive(Debug, thiserror::Error, ToSchema)] |
12 | pub enum Error { | 13 | pub enum Error { |
13 | #[error("db: {source}")] | 14 | #[error("db: {source}")] |
14 | Db { | 15 | Db { |