kernel/artifacts/mod.rs
1//! Generated outputs: the content-addressed artifact store, its records, gallery
2//! arrangement, and provenance rendering. Pure logic and the filesystem — the
3//! `ProvenanceArtifactWriter` that bridges the store to the registry is DI glue
4//! that lands with the kernel facade.
5
6mod artifact;
7mod gallery;
8mod provenance;
9mod speech_text;
10mod store;
11
12pub use artifact::{Artifact, ArtifactDraft};
13pub use gallery::{Gallery, GalleryModel, GallerySort};
14pub use provenance::Provenance;
15pub use speech_text::speakable;
16pub use store::{ArtifactStore, ArtifactStoreError};