receiving initial messages!

This commit is contained in:
William Casarin
2022-12-11 18:34:43 -08:00
parent 5619ae60ad
commit 98adb82e56
7 changed files with 117 additions and 22 deletions

View File

@@ -1,12 +1,15 @@
mod client;
mod error;
mod event;
mod filter;
mod relay;
pub use client::ClientMessage;
pub use error::Error;
pub use event::Event;
pub use filter::Filter;
pub use relay::pool::RelayPool;
pub use relay::message::{RelayEvent, RelayMessage};
pub use relay::pool::{PoolEvent, RelayPool};
pub use relay::Relay;
pub type Result<T> = std::result::Result<T, error::Error>;