use serde::Deserialize;
use crate::InscriptionCacheType;
#[derive(Deserialize, Debug, Clone)]
pub struct Config {
pub url: String,
pub user: String,
pub password: String,
pub reorgs_path: Option<String>,
pub limit: Option<u32>,
pub source_type: InscriptionCacheType,
}