gitdeploy/internal/tools/tools.go

12 lines
336 B
Go
Raw Normal View History

// +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
_ "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"
)