storage/tests/tools/tools.go

13 lines
216 B
Go

//go:build tools
// +build tools
package tools
// Importing the packages here will allow to vendor those via
// `go mod vendor`.
import (
_ "github.com/cpuguy83/go-md2man"
_ "github.com/vbatts/git-validation"
)