Hamov Oleg
Hamov Oleg
Very nice library! But there is one drawback. Run this test ```go package baloo import ( "gopkg.in/h2non/baloo.v3" "testing" ) func Test(t *testing.T) { b := baloo.New("http://www.ya.ru") _ = b.Get(".").Expect(t).Status(11).Done() _...
How i can extract stack trace from this library Error type like at https://github.com/pkg/errors library? ```go type stackTracer interface { StackTrace() errors.StackTrace } err.(stackTracer).StackTrace() // get structured stack trace ```...
It would be great get info about device, like this ``` go type Device struct { Family string Brand string Model string } ``` https://github.com/ua-parser/uap-go
Last fixes https://github.com/opentracing-contrib/go-stdlib/commit/2b2d2700a3b75f6783973d5d5bbea33c7214c66f#diff-3fde75a8887529bd00893a052634c273 require in handler `h(sct.wrappedResponseWriter(), r)` call `WriteHeader`. If not call `WriteHeader` `defer` mark span as error. I use echo http server and dont call `WriteHeader` in my...
By marking the source code in this way  we get syntax highlighting. ```golang import fmt func main() { fmt.Println("hello") } ```
I run `goagen bootstrap` and get struct all fields specify how pointer (int, string e.t.c). But this example struct `Bottle` ``` go type Bottle struct { // Account that owns...