Files
jspg/src/validator/error.rs
2026-02-26 19:17:13 -05:00

7 lines
136 B
Rust

#[derive(Debug, Clone, serde::Serialize)]
pub struct ValidationError {
pub code: String,
pub message: String,
pub path: String,
}