note zap button

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-03-30 15:11:52 -04:00
parent 5917bc16fd
commit cfbd601196
6 changed files with 175 additions and 17 deletions

View File

@@ -57,9 +57,10 @@ pub use user_account::UserAccount;
pub use wallet::{
get_wallet_for_mut, GlobalWallet, Wallet, WalletError, WalletState, WalletType, WalletUIState,
};
pub use zaps::{AnyZapState, NoteZapTarget, NoteZapTargetOwned, ZapTarget, ZappingError};
// export libs
pub use enostr;
pub use nostrdb;
pub use zaps::Zaps;
pub use zaps::Zaps;

View File

@@ -2,4 +2,4 @@ mod cache;
mod networking;
mod zap;
pub use cache::Zaps;
pub use cache::{AnyZapState, NoteZapTarget, NoteZapTargetOwned, ZapTarget, ZappingError, Zaps};