feat: scaffold v0.1 foundation
This commit is contained in:
parent
c4fb0c6a01
commit
170ca32f58
34 changed files with 6175 additions and 5 deletions
13
src/domain/mod.rs
Normal file
13
src/domain/mod.rs
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue