aboutsummaryrefslogtreecommitdiff
path: root/webfinger.go
blob: 004bdcabcaa1c632c1255451851bb835c0f49a9f (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"`	
}