signer-remote 0.4.1

Signer remote communication package.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 远程服务模块
mod client;
mod crdt_crypted_event_vo;
mod crdt_frontier;
mod envelope;
mod eventsource;
mod http_client;
mod resource;

pub use client::SignerRemote;
pub use crdt_crypted_event_vo::{CrdtCryptedEventVO, PostCrdtEventsRequest, GetCrdtEventsResponse};
pub use crdt_frontier::CrdtFrontier;
pub use envelope::{Envelope, EnvelopeInner};
pub use eventsource::{EventData, SignerRemoteEventSource}; // 导出 EventData 和 SignerRemoteEventSource
pub use http_client::{HttpClient, HttpClientConfig};
pub use resource::ResourceUsage;