9 lines
232 B
Go
9 lines
232 B
Go
package activitypub
|
|
|
|
import "net/http"
|
|
|
|
// Unordered collections handler
|
|
func collections(w http.ResponseWriter, r *http.Request) {}
|
|
|
|
// Ordered collections handler
|
|
func orderedCollections(w http.ResponseWriter, r *http.Request) {}
|