khive_pack_code/lib.rs
1//! Code concept vocabulary, finding-note lifecycle, and deterministic audit ingest (ADR-085).
2
3mod db_target;
4mod error;
5mod handlers;
6mod hook;
7pub mod imports;
8pub mod ingest;
9pub mod manifest;
10mod pack;
11pub mod source_ingest;
12pub(crate) mod vocab;
13
14pub use error::CodeIngestError;
15pub use ingest::{ingest_findings_json, CodeIngestBatch, CodeIngestOptions, CODE_INGEST_NAMESPACE};
16pub use pack::CodePack;
17pub use source_ingest::{CodeSourceIngestError, CodeSourceIngestOptions, CodeSourceIngestReport};