2020-09-28 07:26:16 +00:00
|
|
|
// +build tools
|
|
|
|
|
|
|
|
// Package tools is a faux package for tracking dependencies that don't make it into the code
|
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2020-10-20 23:05:01 +00:00
|
|
|
// these are 'go generate' tooling dependencies, not included in the binary
|
2020-09-28 07:26:16 +00:00
|
|
|
_ "github.com/shurcooL/vfsgen"
|
|
|
|
_ "github.com/shurcooL/vfsgen/cmd/vfsgendev"
|
2020-10-20 23:05:01 +00:00
|
|
|
_ "git.rootprojects.org/root/go-gitver/v2"
|
2020-09-28 07:26:16 +00:00
|
|
|
)
|