mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
58d1d025a4
- 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.
8 lines
81 B
Go
8 lines
81 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/kevinburke/go-bindata"
|
|
)
|