mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08: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)
 | 
						|
}
 |