mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-24 07:33:03 +08:00
9 lines
174 B
Go
9 lines
174 B
Go
|
package dnssort
|
||
|
|
||
|
import "github.com/StackExchange/dnscontrol/v4/pkg/dnsgraph"
|
||
|
|
||
|
type SortResult[T dnsgraph.Graphable] struct {
|
||
|
SortedRecords []T
|
||
|
UnresolvedRecords []T
|
||
|
}
|