mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
- 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.
7 lines
81 B
Go
7 lines
81 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/kevinburke/go-bindata"
|
|
)
|