chore(lint): bump to v2.5.0 and enable godoclint (#7632)

This commit is contained in:
Ville Vesilehto
2025-10-23 20:01:57 +03:00
committed by GitHub
parent 4ca99cd7b6
commit b72d267a29
14 changed files with 13 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
// Package loadbalance is a plugin for rewriting responses to do "load balancing"
// Package loadbalance is a plugin for rewriting responses to do "load balancing".
package loadbalance
import (
@@ -9,7 +9,7 @@ import (
"github.com/miekg/dns"
)
// RoundRobin is a plugin to rewrite responses for "load balancing".
// LoadBalance is a plugin to rewrite responses for "load balancing".
type LoadBalance struct {
Next plugin.Handler
shuffle func(*dns.Msg) *dns.Msg

View File

@@ -1,4 +1,3 @@
// Package loadbalance shuffles A, AAAA and MX records.
package loadbalance
import (