//! # Nostr Client //! //! This crate will connect to other relayer or relayers and will subscribe to //! events or perform any operation that can be done in the protocol. //! //! The client will let you connect to a pool of relayers oferring a simple //! protocol to talk to all of them at the same time. //! //! It will also have reconnection logic built-in internally. #![deny(missing_docs, warnings)] mod error; mod relayer; mod relayers; pub use self::{error::Error, relayer::Relayer, relayers::Relayers};