add network resolver record priority field

This commit is contained in:
Asim Aslam 2019-10-28 15:31:46 +00:00
parent 99b410c81b
commit d89256d8d5

View File

@ -11,5 +11,6 @@ type Resolver interface {
// A resolved record
type Record struct {
Address string `json:"address"`
Address string `json:"address"`
Priority int64 `json:"priority"`
}