0g-storage-node/node/miner/src/lib.rs

20 lines
344 B
Rust
Raw Normal View History

2024-01-03 10:24:52 +00:00
#[macro_use]
extern crate tracing;
extern crate contract_interface;
#[macro_use]
extern crate lazy_static;
mod config;
mod loader;
mod mine;
pub mod pora;
mod sealer;
mod service;
mod submitter;
mod watcher;
pub use config::MinerConfig;
pub use loader::PoraLoader;
pub use mine::CustomMineRange;
pub use service::{MineService, MinerMessage};