we will likely replace Note with nostrdb::Note in the future, this just helps with that transition Signed-off-by: William Casarin <jb55@jb55.com>
25 lines
542 B
Rust
25 lines
542 B
Rust
mod client;
|
|
mod error;
|
|
mod event;
|
|
mod filter;
|
|
mod keypair;
|
|
mod note;
|
|
mod profile;
|
|
mod pubkey;
|
|
mod relay;
|
|
|
|
pub use client::ClientMessage;
|
|
pub use error::Error;
|
|
pub use ewebsock;
|
|
pub use filter::Filter;
|
|
pub use keypair::{FullKeypair, Keypair};
|
|
pub use nostr::SecretKey;
|
|
pub use note::{Note, NoteId};
|
|
pub use profile::Profile;
|
|
pub use pubkey::Pubkey;
|
|
pub use relay::message::{RelayEvent, RelayMessage};
|
|
pub use relay::pool::{PoolEvent, RelayPool};
|
|
pub use relay::{Relay, RelayStatus};
|
|
|
|
pub type Result<T> = std::result::Result<T, error::Error>;
|