notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

lib.rs (552B)


      1 mod client;
      2 mod error;
      3 mod filter;
      4 mod keypair;
      5 mod note;
      6 mod profile;
      7 mod pubkey;
      8 mod relay;
      9 
     10 pub use client::ClientMessage;
     11 pub use error::Error;
     12 pub use ewebsock;
     13 pub use filter::Filter;
     14 pub use keypair::{FullKeypair, Keypair, SerializableKeypair};
     15 pub use nostr::SecretKey;
     16 pub use note::{Note, NoteId};
     17 pub use profile::Profile;
     18 pub use pubkey::Pubkey;
     19 pub use relay::message::{RelayEvent, RelayMessage};
     20 pub use relay::pool::{PoolEvent, RelayPool};
     21 pub use relay::{Relay, RelayStatus};
     22 
     23 pub type Result<T> = std::result::Result<T, error::Error>;