affidavit 26.6.22

Provenance Layer — receipt assembly and certification (verify a witness against a format standard; never decide honesty).
1
2
3
4
5
6
7
8
9
10
//! LSP module for affidavit.
//! Re-exports diagnostics, hover, and goto-definition logic.

pub mod diagnostics;
pub mod goto_definition;
pub mod hover;

pub use diagnostics::*;
pub use goto_definition::*;
pub use hover::*;