electrs_client/
config.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Debug, Clone)]
4pub struct Config {
5    pub url: String,
6    pub user: String,
7    pub password: String,
8    pub reorgs_path: Option<String>,
9    pub limit: Option<u32>
10}