It would be good to append @latest to the package identifier otherwise we get an error when installing outside of a module:
> go install github.com/sanposhiho/gomockhandler
go install: version is required when current directory is not in a module
Try 'go install github.com/sanposhiho/gomockhandler@latest' to install the latest version
> go install github.com/sanposhiho/gomockhandler@latest
# Works as expected
It would be good to append
@latest
to the package identifier otherwise we get an error when installing outside of a module:Also, great job on the tool :)