Vilen Topchii
Vilen Topchii
Any progress with this? Except for [workaround](https://github.com/swaggo/swag/issues/386#issuecomment-833913287)
> i have a branch, where i refactore swaggo to use open api 3.0 specs, but will still take some weeks/months until it is finished, as i do not have...
@SVilgelm, didn't help me.
What about [(*HTTPClient) SetClient(client *http.Client)](https://github.com/mailjet/mailjet-apiv3-go/blob/4a03c376ccaa885bd30f3255448173a1b8ae96df/http_client.go#L45)?
Try `RegisterCustomTypeFunc`, example - https://github.com/go-playground/validator/issues/470#issuecomment-607876264
will it work with google.golang.org/protobuf/cmd/protoc-gen-go?
Yea, confusing a bit.
1. What message do you want to see? `Please, run goimports tool for this file`? 2. Have you tried `--fix` option?
@bcomnes, `import statement` != `goimports`, looks like the tool should be renamed, not a message. [In addition to fixing imports, goimports also formats your code in the same style as...
@samurnin, the `goimports -w` is not just managing imports, it's also doing the same formating as regular `gofmt -w`. P.S. thanks for `-s` flag.