Shailesh
Shailesh
Hi, I am trying to connect to the edgeDB instance, but the connection fails Authentication Failed. I have a windows system and have installed edgedb by docker. Following is the...
Need to improved documentation for Hammer at goDoc. https://godoc.org/github.com/ShaileshSurya/hammer
Rough Design: ``` func apiResponse(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusOK) w.Header().Set("Content-Type", "application/json") w.Write([]byte(`{"message":"hello world!"}`)) } ``` ``` hammer.ResponseBuilder(http.ResponseWriter) .WithStatus(http.StatusOK). WithHeader("content-type","application/json"). WithBody(&map or &struct). send() ``` The design is too vague...