Skip to content

Commit

Permalink
fix: IC-90 - added missed import (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-ivanuzzo authored Feb 27, 2024
1 parent c938f84 commit e79dfa0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,8 @@ pub mod traits {

pub mod types {
pub use crate::primary::types::{HandlerOutput, IncomingPacket, OutgoingPacket};
}

pub mod errors {
pub use crate::primary::errors::{FieldError};
}
2 changes: 1 addition & 1 deletion src/primary/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod client;
mod config;
mod crypto;
mod errors;
pub mod errors;
pub mod shared;
mod macros;
mod network;
Expand Down

0 comments on commit e79dfa0

Please sign in to comment.