lib.rs 512 B

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