mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
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
|
|
}
|