hyperhive/hive-sh4re/src/lib.rs
damocles 80f16094f1 hive-sh4re: split inbox, container, journal, and schedule wire shapes into their own modules
Closes the #3110 split — lib.rs is now just the crate doc comment and
the pub mod list.

journal.rs's new doc comment fixes a pre-existing bug: the old
JournalPriority doc text in lib.rs was actually half Capability's doc
(a leftover from an earlier reorder that moved the code but not the
comment above it).
2026-08-10 23:26:15 +02:00

13 lines
268 B
Rust

//! Wire types shared between `hive-c0re` and the in-container harness.
pub mod approvals;
pub mod assets;
pub mod bash_task;
pub mod container;
pub mod inbox;
pub mod journal;
pub mod manager;
pub mod paths;
pub mod permissions;
pub mod schedule;
pub mod wire_time;