add function what returns http.StatusNotImplemented

This commit is contained in:
2025-12-18 19:59:06 +02:00
parent 524749b329
commit 99fd0f5776

View File

@@ -0,0 +1,7 @@
package server
import "net/http"
func NotImplemented(w http.ResponseWriter) {
http.Error(w, "Not implemented", http.StatusNotImplemented)
}