use anyhow::Result; use ctlog::CTLogV1; #[tokio::main] async fn main() -> Result<()> { let ctlog = CTLogV1::new("https://ct.trustasia.com/log2023/")?; let sth = ctlog.get_sth().await?; println!("{:#?}", sth); Ok(()) }