dnscontrol/providers/msdns/domains.go

9 lines
256 B
Go
Raw Normal View History

package msdns
import "github.com/StackExchange/dnscontrol/v3/models"
func (client *msdnsProvider) GetNameservers(string) ([]*models.Nameserver, error) {
// TODO: If using AD for publicly hosted zones, probably pull these from config.
return nil, nil
}