We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97fd446 commit e33e852Copy full SHA for e33e852
crates/nostr/src/prelude.rs
@@ -12,15 +12,15 @@ pub use secp256k1;
12
pub use url::*;
13
14
// Internal modules
15
-pub use crate::event::builder::*;
16
-pub use crate::event::id::*;
17
-pub use crate::event::kind::*;
18
-pub use crate::event::tag::*;
19
-pub use crate::event::unsigned::*;
20
-pub use crate::event::*;
21
-pub use crate::key::*;
22
-pub use crate::message::*;
23
-pub use crate::types::*;
+pub use crate::event;
+pub use crate::event::builder;
+pub use crate::event::id;
+pub use crate::event::kind;
+pub use crate::event::tag;
+pub use crate::event::unsigned;
+pub use crate::key;
+pub use crate::message;
+pub use crate::types;
24
pub use crate::Result;
25
26
#[cfg(feature = "std")]
0 commit comments