Skip to content

Commit e33e852

Browse files
committed
nostr: fix ambiguous glob re-exports in prelude
1 parent 97fd446 commit e33e852

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

crates/nostr/src/prelude.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ pub use secp256k1;
1212
pub use url::*;
1313

1414
// 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::*;
15+
pub use crate::event;
16+
pub use crate::event::builder;
17+
pub use crate::event::id;
18+
pub use crate::event::kind;
19+
pub use crate::event::tag;
20+
pub use crate::event::unsigned;
21+
pub use crate::key;
22+
pub use crate::message;
23+
pub use crate::types;
2424
pub use crate::Result;
2525

2626
#[cfg(feature = "std")]

0 commit comments

Comments
 (0)