/go-tools

a way to manager yours go tools

Primary LanguageGo

go-tools

A recommended way to manage your go tools in each Golang project.

Usage

make install-tools

Tips

If the package you imported has an uncommon name, such as github.com/hairyhenderson/gomplate/v3, you can add a comment after it:

package tools

import (
	_ "github.com/hairyhenderson/gomplate/v3" // gomplate
)

The install-tools will handle it properly and name the package as gomplate.

References