rust-blockchain/src/lib.rs

18 lines
248 B
Rust
Raw Normal View History

2024-05-23 04:13:05 +03:00
use std::net::IpAddr;
pub mod block;
pub mod blockchain;
2024-05-23 04:13:05 +03:00
pub mod network;
mod test;
pub mod utils;
pub enum Runner {
Server,
Client,
}
pub struct ServerConfig {
pub server_address: IpAddr,
pub port: u16,
pub difficulty: u8,
}