fixed go test command
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
2025-03-23 00:09:03 +03:00
parent c7b2777b68
commit ce50369ac7

View File

@@ -18,8 +18,8 @@ func handler(w http.ResponseWriter, r *http.Request) {
}
// Write the content to the response writer
w.WriteHeader(http.StatusTeapot) // Set the 418 status code
fmt.Fprintf(w, string(content)) //Write the entire content as a string
w.WriteHeader(http.StatusTeapot) // Set the 418 status code
fmt.Fprintf(w, "%s", string(content)) //Write the entire content as a string
}
func main() {