package server import "net/http" func NotImplemented(w http.ResponseWriter) { http.Error(w, "Not implemented", http.StatusNotImplemented) }