Skip to content

Commit d69bc6f

Browse files
committed
blossom: add prelude module
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent 739ab3b commit d69bc6f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

crates/nostr-blossom/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@
1717
pub mod bud01;
1818
pub mod bud02;
1919
pub mod client;
20+
pub mod prelude;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)