lib.rs (440B)
1 mod client; 2 mod error; 3 mod event; 4 mod filter; 5 mod profile; 6 mod pubkey; 7 mod relay; 8 9 pub use client::ClientMessage; 10 pub use error::Error; 11 pub use event::{Event, EventId}; 12 pub use ewebsock; 13 pub use filter::Filter; 14 pub use profile::Profile; 15 pub use pubkey::Pubkey; 16 pub use relay::message::{RelayEvent, RelayMessage}; 17 pub use relay::pool::{PoolEvent, RelayPool}; 18 pub use relay::Relay; 19 20 pub type Result<T> = std::result::Result<T, error::Error>;