aboutsummaryrefslogtreecommitdiff
path: root/webfinger.go
blob: c8fd0aec898957ed224465991134561e5838c393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

type Webfinger struct {
	Subject string          `json:"subject,omitempty"`
	Links   []WebfingerLink `json:"links,omitempty"`
}

type WebfingerLink struct {
	Rel  string `json:"rel,omitempty"`
	Type string `json:"type,omitempty"`
	Href string `json:"href,omitempty"`
}