1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
stackexchange-dnscontrol/pkg/dnssort/result.go

9 lines
174 B
Go
Raw Normal View History

package dnssort
import "github.com/StackExchange/dnscontrol/v4/pkg/dnsgraph"
type SortResult[T dnsgraph.Graphable] struct {
SortedRecords []T
UnresolvedRecords []T
}