mirror of
https://github.com/containers/podman.git
synced 2025-07-18 01:57:24 +08:00
14 lines
279 B
Go
14 lines
279 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// Importing the packages here will allow to vendor those via
|
|
// `go mod vendor`.
|
|
|
|
import (
|
|
_ "github.com/cpuguy83/go-md2man/v2"
|
|
_ "github.com/onsi/ginkgo/v2/ginkgo"
|
|
_ "github.com/vbatts/git-validation"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
)
|