mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03: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
|
||
|
}
|