mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
13 lines
310 B
Go
13 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)
|
|
}
|