Gabe Kangas b80ccc4966
WIP
2024-03-25 09:04:05 -07:00

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
}