79734525

Date: 2025-08-13 16:21:55
Score: 1.5
Natty:
Report link

In this line

req, err := http.NewRequest("POST", "/", nil)

use httptest instead of http :

req, err := httptest.NewRequest("POST", "/", nil)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Distraw