mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-01-27 15:25:18 +00:00
7 lines
89 B
Rust
7 lines
89 B
Rust
|
use std::path::PathBuf;
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub struct Config {
|
||
|
pub db_dir: PathBuf,
|
||
|
}
|