1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
stackexchange-dnscontrol/providers/porkbun/listzones.go
2023-11-15 10:28:41 -05:00

10 lines
178 B
Go

package porkbun
func (client *porkbunProvider) ListZones() ([]string, error) {
zones, err := client.listAllDomains()
if err != nil {
return nil, err
}
return zones, err
}