mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 02:17:43 +08:00
752e25471d
* Move the registrar features to a separate file * Prepare the testing framework * Roughed out functions * Fix up structs * WIP! * First tests pass * wip! * Flesh out remaining rTypes, get nameservers, etc * Fix TXT records * Clean up code * More cleanups. Fix CAA/SRV * Linting * Cleanups/linting * Fix CAA [more] and more cleanups * CSC does not like very long txt records * Use timer only when interactive * Disable CAA for now * Update docs * Remove debug printf * add go-isatty * cleanups
7 lines
161 B
Go
7 lines
161 B
Go
package cscglobal
|
|
|
|
// ListZones returns all the zones in an account
|
|
func (client *providerClient) ListZones() ([]string, error) {
|
|
|
|
return client.getDomains()
|
|
}
|