fix: moved to encoding/json/v2

This commit is contained in:
2026-08-31 18:44:22 +02:00
parent 73df97548b
commit eaf676f8b4
4 changed files with 17 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
package response
import (
"net/http"
)
func Status(w http.ResponseWriter, status int) {
w.WriteHeader(status)
}