blob: bf5939eb107a4f9a2216427a6cb9986f68a6cd57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package main
import (
"net/http"
)
func handle_users(w http.ResponseWriter, r *http.Request, params map[string]any) {
http.Error(w, "Not implemented", http.StatusNotImplemented)
}
|