11 lines
217 B
Go
11 lines
217 B
Go
|
package apmodels
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// InboxRequest represents an inbound request to the ActivityPub inbox.
|
||
|
type InboxRequest struct {
|
||
|
Request *http.Request
|
||
|
ForLocalAccount string
|
||
|
Body []byte
|
||
|
}
|