(&self, record_id: &str)
| 265 | |
| 266 | impl Dns01Api for CloudflareClient { |
| 267 | async fn remove_record(&self, record_id: &str) -> Result<()> { |
| 268 | self.remove_record_inner(record_id).await |
| 269 | } |
| 270 | |
| 271 | async fn remove_txt_records(&self, domain: &str) -> Result<()> { |
| 272 | let records = self.get_records_inner(domain).await?; |
no test coverage detected