1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
2023-12-11 16:24:11 -05:00

12 lines
324 B
Go

package dnssort
import "github.com/StackExchange/dnscontrol/v4/pkg/dnsgraph"
// SortResult is the result of a sort function.
type SortResult[T dnsgraph.Graphable] struct {
// SortedRecords is the sorted records.
SortedRecords []T
// UnresolvedRecords is the records that could not be resolved.
UnresolvedRecords []T
}