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 739ab3b commit d69bc6fCopy full SHA for d69bc6f
crates/nostr-blossom/src/lib.rs
@@ -17,3 +17,4 @@
17
pub mod bud01;
18
pub mod bud02;
19
pub mod client;
20
+pub mod prelude;
crates/nostr-blossom/src/prelude.rs
@@ -0,0 +1,14 @@
1
+// Copyright (c) 2022-2023 Yuki Kishimoto
2
+// Copyright (c) 2023-2025 Rust Nostr Developers
3
+// Distributed under the MIT software license
4
+
5
+//! Prelude
6
7
+#![allow(unused_imports)]
8
+#![allow(unknown_lints)]
9
+#![allow(ambiguous_glob_reexports)]
10
+#![doc(hidden)]
11
12
+pub use crate::bud01::*;
13
+pub use crate::bud02::*;
14
+pub use crate::client::*;
0 commit comments