ignore unused error in GeneralError

This commit is contained in:
Zoey 2024-04-25 00:32:09 -07:00
parent 373fc5889d
commit b2c068d1ff
No known key found for this signature in database
GPG key ID: 8611B896D1AAFAF2

View file

@ -7,6 +7,7 @@ pub enum GeneralError {
Json(#[from] serde_json::Error),
#[error("{0}")]
Custom(String),
#[allow(unused)]
#[error("{0}")]
CustomPrivate(String),
}