ocm_types/lib.rs
1/// This module contains types for the resources provided via the discovery
2/// endpoint.
3pub mod discovery;
4/// This module contains types to create a new share.
5pub mod share;
6/// Notifications to inform on changes to sent or received share.
7pub mod notification;
8/// Accept an out-of-band invite to establish trust between instances.
9pub mod invite;
10pub mod token;
11pub mod error;
12
13/// Contains types re-used in different parts of the protocol types.
14pub mod common;