fleet/tools.go
Zach Wasserman 58d1d025a4
Upgrade go-bindata to maintained github.com/kevinburke/go-bindata (#512)
- This seems to be the maintained, trusted (by Homebrew, etc.) version
  of go-bindata.
- Add tools.go file to pin version with go modules.
- Use go run to run the binary, making easier configuration for new developers.
2021-03-22 11:03:03 -07:00

8 lines
81 B
Go

// +build tools
package tools
import (
_ "github.com/kevinburke/go-bindata"
)