0g-storage-node/node/miner/src/lib.rs
bruno-valante 7d73ccd1e1
Update with the most recent storage contract (#142)
* Update with the most recent storage contract

* fix nits
2024-07-24 13:01:30 +08:00

26 lines
473 B
Rust

#[macro_use]
extern crate tracing;
extern crate contract_interface;
#[macro_use]
extern crate lazy_static;
mod config;
mod loader;
mod metrics;
mod mine;
mod miner_id;
mod monitor;
pub mod pora;
mod recall_range;
mod sealer;
mod service;
mod submitter;
mod watcher;
pub use config::MinerConfig;
pub use loader::PoraLoader;
pub use mine::MineRangeConfig;
pub use miner_id::load_miner_id;
pub use service::{MineService, MinerMessage};
pub use storage::config::ShardConfig;