Skip to content

Commit

Permalink
expose types via api
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth committed Jul 5, 2024
1 parent d6d5525 commit ce461b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/sdk/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ pub struct TofnFatal;
/// Expose tofn's (de)serialization functions
/// that use the appropriate bincode config options.
pub use super::wire_bytes::{deserialize, serialize};

pub use super::key::SecretRecoveryKey;

pub use crate::crypto_tools::message_digest::MessageDigest;
2 changes: 1 addition & 1 deletion src/sdk/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod api;

pub mod key;
pub(crate) mod key;

pub(crate) mod wire_bytes;

0 comments on commit ce461b8

Please sign in to comment.