feat: scaffold v0.1 foundation

This commit is contained in:
hermes 2026-07-28 19:26:47 +00:00
commit 170ca32f58
34 changed files with 6175 additions and 5 deletions

13
src/domain/mod.rs Normal file
View file

@ -0,0 +1,13 @@
//! Validated domain values shared by the CLI, store, and adapter protocol.
mod address;
mod identifier;
mod limits;
mod path;
mod selector;
pub use address::{Address, AddressParseError};
pub use identifier::{Digest, IdentifierError, InvocationId};
pub use limits::{CollectionLimit, Limits, PageRequest, PositiveU64};
pub use path::TaggedPath;
pub use selector::FunctionSelector;