aboutsummaryrefslogtreecommitdiff
path: root/webfinger.go
diff options
context:
space:
mode:
authorKushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com>2021-08-15 12:29:03 -0300
committerKushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com>2021-08-15 12:30:26 -0300
commitb0bb22aa9c9f1d5b2e582e58bf20c6856feb87ec (patch)
tree1107a5cbfd05f9b696d7ebacce9475f003db7a4c /webfinger.go
parent149f71db2d6e1b704ff2712393da5276a622d4dd (diff)
go fmt
Diffstat (limited to 'webfinger.go')
-rw-r--r--webfinger.go8
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"`
}