mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-12-09 21:55:57 +08:00
10 lines
384 B
Go
10 lines
384 B
Go
package joker
|
|
|
|
import "github.com/StackExchange/dnscontrol/v4/models"
|
|
|
|
// GetNameservers returns the nameservers for a domain.
|
|
func (api *jokerProvider) GetNameservers(domain string) ([]*models.Nameserver, error) {
|
|
// For DNS-only providers like Joker, we can return an empty list
|
|
// since nameserver management is typically handled separately
|
|
return []*models.Nameserver{}, nil
|
|
}
|