aboutsummaryrefslogtreecommitdiff
path: root/webfinger/webfinger.go
blob: 8e43dd2b9b67d92fbbc6fc39b80f06ab7629d282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"`
}