use ontocore_core::{Annotation, Axiom, Diagnostic, Entity, Import, Namespace, OntologyDocument};
#[derive(Debug, Clone, Default)]
pub struct DiagnosticInput<'a> {
pub documents: &'a [OntologyDocument],
pub entities: &'a [Entity],
pub annotations: &'a [Annotation],
pub axioms: &'a [Axiom],
pub namespaces: &'a [Namespace],
pub imports: &'a [Import],
}
impl<'a> DiagnosticInput<'a> {
pub fn diagnostics(&self) -> Vec<Diagnostic> {
crate::engine::collect_diagnostics(self)
}
}