creating and deleting users

This commit is contained in:
2025-03-11 18:56:12 +02:00
parent 806b27d955
commit 5618aeb439
8 changed files with 132 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
package httpResponse
import (
"net/http"
)
func SomethingWentWrong(w http.ResponseWriter) {
JSONHandler(w, http.StatusInternalServerError, `{"error": "Something went wrong"}`)
}