mithril_aggregator/services/signer_registration/
mod.rs
1mod api;
2mod error;
3mod follower;
4mod leader;
5mod verifier;
6
7pub use api::{
8 SignerRecorder, SignerRegisterer, SignerRegistrationRound, SignerRegistrationRoundOpener,
9 SignerRegistrationVerifier, SignerSynchronizer,
10};
11pub use error::SignerRegistrationError;
12pub use follower::MithrilSignerRegistrationFollower;
13pub use leader::MithrilSignerRegistrationLeader;
14pub use verifier::MithrilSignerRegistrationVerifier;
15
16#[cfg(test)]
17pub use api::{MockSignerRecorder, MockSignerRegisterer, MockSignerRegistrationVerifier};