did_ion/
lib.rs

1use sidetree::SidetreeClient;
2
3mod ion;
4pub mod sidetree;
5
6pub const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
7
8pub use ion::ION;
9
10/// did:ion Method
11pub type DIDION = SidetreeClient<ION>;