good morning!!!!

Skip to content
Snippets Groups Projects
tools.go 264 B
Newer Older
Anmol Sethi's avatar
Anmol Sethi committed
// +build tools

package tools

// See https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md
import (
Anmol Sethi's avatar
Anmol Sethi committed
	_ "go.coder.com/go-tools/cmd/goimports"
Anmol Sethi's avatar
Anmol Sethi committed
	_ "golang.org/x/lint/golint"
Anmol Sethi's avatar
Anmol Sethi committed
	_ "golang.org/x/tools/cmd/stringer"
Anmol Sethi's avatar
Anmol Sethi committed
	_ "mvdan.cc/sh/cmd/shfmt"
)