sui_deepbook_indexer/
config.rsuse serde::{Deserialize, Serialize};
use std::env;
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct IndexerConfig {
pub remote_store_url: String,
#[serde(default = "default_db_url")]
pub db_url: String,
pub checkpoints_path: Option<String>,
pub sui_rpc_url: String,
pub deepbook_package_id: String,
pub deepbook_genesis_checkpoint: u64,
pub concurrency: u64,
pub metric_port: u16,
pub service_port: u16,
}
impl sui_config::Config for IndexerConfig {}
pub fn default_db_url() -> String {
env::var("DB_URL").expect("db_url must be set in config or via the $DB_URL env var")
}