You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
310 B
13 lines
310 B
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) |
|
}
|
|
|