Files
jspg/src/error.rs
2026-02-26 15:46:01 -05:00

7 lines
136 B
Rust

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