9 lines
159 B
Rust
9 lines
159 B
Rust
|
use buildstructor::Builder;
|
||
|
|
||
|
use crate::storage::CommonConfig;
|
||
|
|
||
|
#[derive(Debug, Builder, Clone)]
|
||
|
pub struct MemConfig {
|
||
|
pub common_config: CommonConfig,
|
||
|
}
|