1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2022 MASSA LABS <info@massa.net>
//! Definition and exports of the PoS types and errors.
//!
//! Define also the Selector worker that compute in background the draws for
//! the future cycles

#![warn(missing_docs)]

mod config;
mod controller_traits;
mod error;
mod types;

pub use config::FactoryConfig;
pub use controller_traits::FactoryManager;
pub use error::*;
pub use types::*;

/// Tests utils
#[cfg(feature = "test-exports")]
pub mod test_exports;