Alex Arwine

Results 7 issues of Alex Arwine

Here's the doc for FullPath() ``` FullPath returns a matched route full path. For not found routes returns an empty string. router.GET("/user/:id", func(c *gin.Context) { c.FullPath() == "/user/:id" // true...

This PR adds a `StacktraceEncoder` type to the `EncoderConfig` struct Users can override the `EncodeStacktrace` field to configure how stacktraces are outputed This PR aims to resolve https://github.com/uber-go/zap/issues/514 by mirroring...

It is more important to sign the data that kong has derived, and therefore is the authoritative source for; than signing the untrusted data that was passed into the http...

I wanted to propose a new blocking method to run the Stream loop. This blocking method allows us to pull out the go routines into the caller's code so that...

enhancement

This PR aims to address https://github.com/ipdata/go/issues/19 Dep has been deprecated for some time, in favor of the upstream go modules release We also fix vet, test and linting issues by...

> Dep was an official experiment to implement a package manager for Go. As of 2020, Dep is deprecated and archived in favor of Go modules, which have had official...

Currently the `http.Client` is completely managed by the [constructor ](https://github.com/ipdata/go/blob/master/client.go#L51), and is unexported preventing any further configuration of the client after initialization However, it may be desirable to provide a...