diff options
author | FChannel <> | 2022-06-12 15:36:19 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | f57d5722e6f2187bea249240eb14c881f989c3c1 (patch) | |
tree | ef8f4d23f9c40e0b0ba1ab2efb03e3795efe8ec0 /activitypub/activityPubStruct.go | |
parent | dac4b267cab31fb3a4ce301f1bcdf364fcb541a1 (diff) |
first pass on federation working
Diffstat (limited to 'activitypub/activityPubStruct.go')
-rw-r--r-- | activitypub/activityPubStruct.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/activitypub/activityPubStruct.go b/activitypub/activityPubStruct.go index ee1e451..b8e3180 100644 --- a/activitypub/activityPubStruct.go +++ b/activitypub/activityPubStruct.go @@ -93,17 +93,17 @@ type PublicKeyPem struct { type Activity struct { AtContext - Type string `json:"type,omitempty"` - Id string `json:"id,omitempty"` - Actor *Actor `json:"actor,omitempty"` - Name string `json:"name,omitempty"` - Summary string `json:"summary,omitempty"` - Auth string `json:"auth,omitempty"` - To []string `json:"to,omitempty"` - Bto []string `json:"bto,omitempty"` - Cc []string `json:"cc,omitempty"` - Published time.Time `json:"published,omitempty"` - Object *ObjectBase `json:"object,omitempty"` + Type string `json:"type,omitempty"` + Id string `json:"id,omitempty"` + Actor *Actor `json:"actor,omitempty"` + Name string `json:"name,omitempty"` + Summary string `json:"summary,omitempty"` + Auth string `json:"auth,omitempty"` + To []string `json:"to,omitempty"` + Bto []string `json:"bto,omitempty"` + Cc []string `json:"cc,omitempty"` + Published time.Time `json:"published,omitempty"` + Object ObjectBase `json:"object,omitempty"` } type ObjectBase struct { |