Michel Casabianca

Results 9 issues of Michel Casabianca

In Go, a method defined on a pointer like this: ```go func (u *User) SayHello() {...} ``` May be called on a pointer or on an instance: ```go user1 :=...

Hi, this would be cool to generate binaries for all GO plateforms. This is a matter of minutes using GOX: ``` go get github.com/mitchellh/gox gox -build-toolchain gox ``` That's it!

When trying to install as shown in documentation: ``` $ go get github.com/yudai/gojsondiff/jd go: downloading github.com/codegangsta/cli v1.22.5 go get: github.com/codegangsta/cli@none updating to github.com/codegangsta/[email protected]: parsing go.mod: module declares its path as:...

Added new [Taven](https://tavern.readthedocs.io/en/latest/) like executor. See documentation at .

In order to check that code works as expected, I have coded integration tests using [Venom](https://github.com/intercloud/venom/releases). To run them: ``` $ cd examples $ go test ``` Tests are in...

You can start server with *StartGraceful(addr...)* function that sends back a server instance. You can call *Shutdown()* on this server instance to stop it gracefully.

Fixes issue #12 adding a recovery handler on the Gin engine.

This bug is related to the request value that is shared among all the requests. This crashed application when the request value is modified as in the example code. This...

This bug is related to the request value that is shared among all the requests. This crashed application when the request value is modified as in the example code. This...