mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-15 12:35:18 +00:00
10 lines
196 B
Rust
10 lines
196 B
Rust
|
use std::net::SocketAddr;
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub struct Config {
|
||
|
pub enabled: bool,
|
||
|
pub listen_address: SocketAddr,
|
||
|
pub chunks_per_segment: usize,
|
||
|
pub max_cache_file_size: usize,
|
||
|
}
|