mirror of
https://github.com/aljazceru/notedeck.git
synced 2025-12-19 09:34:19 +01:00
25 lines
700 B
Rust
25 lines
700 B
Rust
mod client;
|
|
mod error;
|
|
mod filter;
|
|
mod keypair;
|
|
mod note;
|
|
mod profile;
|
|
mod pubkey;
|
|
mod relay;
|
|
|
|
pub use client::{ClientMessage, EventClientMessage};
|
|
pub use error::Error;
|
|
pub use ewebsock;
|
|
pub use filter::Filter;
|
|
pub use keypair::{FilledKeypair, FullKeypair, Keypair, SerializableKeypair};
|
|
pub use nostr::SecretKey;
|
|
pub use note::{Note, NoteId};
|
|
pub use profile::Profile;
|
|
pub use pubkey::{Pubkey, PubkeyRef};
|
|
pub use relay::message::{RelayEvent, RelayMessage};
|
|
pub use relay::pool::{PoolEvent, PoolRelay, RelayPool};
|
|
pub use relay::subs_debug::{OwnedRelayEvent, RelayLogEvent, SubsDebug, TransferStats};
|
|
pub use relay::{Relay, RelayStatus};
|
|
|
|
pub type Result<T> = std::result::Result<T, error::Error>;
|