about summary refs log tree commit diff
path: root/src/tools/jsondocck/src/error.rs
blob: eb2932f7803235e2492cd30ff0966901094169f0 (plain)
1
2
3
4
5
6
7
use crate::Directive;

#[derive(Debug)]
pub struct CkError {
    pub message: String,
    pub directive: Directive,
}