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).
13 lines
268 B
Rust
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;
|