1234567891011121314151617 |
- //! # 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
- //! and unified interface to interact with a pool of relayers at the same time.
- //!
- //! It will also have reconnection logic built-in internally.
- #![deny(missing_docs, warnings)]
- pub mod client;
- mod error;
- pub mod pool;
- pub use url::Url;
- pub use self::{client::Client, error::Error, pool::Pool};
|