chore: update dns fn name

This commit is contained in:
2022-02-05 15:55:29 +08:00
parent 31e480a7b2
commit 9e3ae38447
3 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ pub struct DnsRecord {
}
pub trait DnsClient {
fn list_dns(&mut self, domain: &str) -> XResult<Vec<DnsRecord>>;
fn list_dns_records(&mut self, domain: &str) -> XResult<Vec<DnsRecord>>;
fn delete_dns_record(&mut self, record_id: &str) -> XResult<()>;