lockbook_shared/
core_config.rs

1use serde::Deserialize;
2
3#[derive(Debug, Deserialize, Clone)]
4pub struct Config {
5    pub logs: bool,
6    pub colored_logs: bool,
7    pub writeable_path: String,
8}