package resources type Link struct { Rel string `json:"rel"` Type string `json:"type"` Href string `json:"href"` } type WebfingerResource struct { Subject string `json:"subject"` Aliases []string `json:"aliases"` Links []Link `json:"links"` }