diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-06 20:55:57 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-06 20:55:57 -0800 |
commit | 8c217067ee5132c6e5453e1c09b2391880e51d83 (patch) | |
tree | 0d9c571d6c1a5e5adf6e5a91483341f038c74496 | |
parent | 045a85eb39517464d4a300cc180ac8b834125dec (diff) | |
download | adenosine-8c217067ee5132c6e5453e1c09b2391880e51d83.tar.gz adenosine-8c217067ee5132c6e5453e1c09b2391880e51d83.zip |
comon: simplify public interface
-rw-r--r-- | adenosine-common/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/adenosine-common/src/lib.rs b/adenosine-common/src/lib.rs index fcbd02e..8475c16 100644 --- a/adenosine-common/src/lib.rs +++ b/adenosine-common/src/lib.rs @@ -1,4 +1,3 @@ /// Some shared types and utilities used across multiple adenosine crates. -mod identifiers; -pub use identifiers::{AtUri, Did, DidOrHost, Nsid, Tid, TidLord}; +pub mod identifiers; |