pot_o_validator/lib.rs
1//! PoT-O Validator library: re-exports of core, ai3-lib, mining, and extensions, plus config.
2//!
3//! Use this crate when building tooling or tests that need the same types as the validator binary.
4
5pub mod config;
6
7pub use ai3_lib::*;
8pub use pot_o_core::*;
9pub use pot_o_extensions::*;
10pub use pot_o_mining::*;
11
12/// Crate version (from Cargo.toml).
13pub const VERSION: &str = env!("CARGO_PKG_VERSION");
14
15/// Default HTTP listen port for the validator API.
16pub const DEFAULT_PORT: u16 = 8900;