diff options
Diffstat (limited to 'webfinger.go')
-rw-r--r-- | webfinger.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webfinger.go b/webfinger.go index 004bdca..c8fd0ae 100644 --- a/webfinger.go +++ b/webfinger.go @@ -1,12 +1,12 @@ package main type Webfinger struct { - Subject string `json:"subject,omitempty"` - Links []WebfingerLink `json:"links,omitempty"` + Subject string `json:"subject,omitempty"` + Links []WebfingerLink `json:"links,omitempty"` } type WebfingerLink struct { - Rel string `json:"rel,omitempty"` + Rel string `json:"rel,omitempty"` Type string `json:"type,omitempty"` - Href string `json:"href,omitempty"` + Href string `json:"href,omitempty"` } |