mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-23 23:23:05 +08:00
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com> Co-authored-by: Tom Limoncelli <tal@whatexit.org>
8 lines
174 B
Go
8 lines
174 B
Go
package dnssort
|
|
|
|
import "github.com/StackExchange/dnscontrol/v4/pkg/dnsgraph"
|
|
|
|
type SortResult[T dnsgraph.Graphable] struct {
|
|
SortedRecords []T
|
|
UnresolvedRecords []T
|
|
}
|