chore: Rebrand UKFast SafeDNS to ANS SafeDNS

This commit is contained in:
Dane Elwell 2026-02-26 14:20:11 +00:00 committed by Fernandez Ludovic
commit 395956759b
3 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@ const defaultBaseURL = "https://api.ukfast.io/safedns/v1"
const authorizationHeader = "Authorization"
// Client the UKFast SafeDNS client.
// Client the ANS SafeDNS client.
type Client struct {
authToken string

View file

@ -1,4 +1,4 @@
// Package safedns implements a DNS provider for solving the DNS-01 challenge using UKFast SafeDNS.
// Package safedns implements a DNS provider for solving the DNS-01 challenge using ANS SafeDNS.
package safedns
import (
@ -75,7 +75,7 @@ func NewDNSProvider() (*DNSProvider, error) {
return NewDNSProviderConfig(config)
}
// NewDNSProviderConfig return a DNSProvider instance configured for UKFast SafeDNS.
// NewDNSProviderConfig return a DNSProvider instance configured for ANS SafeDNS.
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("safedns: supplied configuration was nil")

View file

@ -1,6 +1,6 @@
Name = "UKFast SafeDNS"
Name = "ANS SafeDNS"
Description = ''''''
URL = "https://www.ukfast.co.uk/dns-hosting.html"
URL = "https://www.ans.co.uk/"
Code = "safedns"
Since = "v4.6.0"