constellation/hack/tools/tools.go
Thomas Tendyck 3b9f7530fb license: change headers
find -name '*.go' -exec sed -i 's/SPDX-License-Identifier: AGPL-3.0-only/SPDX-License-Identifier: BUSL-1.1/' {} +
2025-07-15 23:34:48 +02:00

19 lines
503 B
Go

//go:build tools
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: BUSL-1.1
*/
// The tools module is used to keep tool dependencies separate from the main dependencies of the repo
// For more details see: https://github.com/golang/go/issues/25922#issuecomment-1038394599
package main
import (
_ "github.com/google/go-licenses"
_ "github.com/google/keep-sorted"
_ "github.com/katexochen/sh/v3/cmd/shfmt"
_ "golang.org/x/tools/cmd/stringer"
_ "golang.org/x/vuln/cmd/govulncheck"
)