inboxRequest.go 217 B

12345678910
  1. package apmodels
  2. import "net/http"
  3. // InboxRequest represents an inbound request to the ActivityPub inbox.
  4. type InboxRequest struct {
  5. Request *http.Request
  6. ForLocalAccount string
  7. Body []byte
  8. }