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