mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
14 lines
310 B
Go
14 lines
310 B
Go
|
package inbox
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/go-fed/activity/streams/vocab"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func handleCreateRequest(c context.Context, activity vocab.ActivityStreamsCreate) error {
|
||
|
iri := activity.GetJSONLDId().GetIRI().String()
|
||
|
return errors.New("not handling create request of: " + iri)
|
||
|
}
|