diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-19 13:19:11 -0300 |
---|---|---|
committer | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-19 13:19:11 -0300 |
commit | 149b885f10011c0cb9fd49bc162165d4ecff4331 (patch) | |
tree | 9ba48446cbf3068438fd1dd512b194ffdf299a9b /activityPubStruct.go | |
parent | 90bcb54980998c757059957d218e2cf1899e462d (diff) |
go fmt, go vet
Diffstat (limited to 'activityPubStruct.go')
-rw-r--r-- | activityPubStruct.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activityPubStruct.go b/activityPubStruct.go index 2c57c61..8676b12 100644 --- a/activityPubStruct.go +++ b/activityPubStruct.go @@ -99,11 +99,11 @@ type Activity struct { Name string `json:"name,omitempty"` Summary string `json:"summary,omitempty"` Auth string `json:"auth,omitempty"` - To []string `json:"to, omitempty"` + To []string `json:"to,omitempty"` Bto []string `json:"bto,omitempty"` - Cc []string `json:"cc, omitempty"` + Cc []string `json:"cc,omitempty"` Published time.Time `json:"published,omitempty"` - Object *ObjectBase `json:"object, omitempty"` + Object *ObjectBase `json:"object,omitempty"` } type ObjectBase struct { |