blob: d9365196916942e11d9c7fce26413921afa4511e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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"`
}
|