2023-03-14 12:18:33 -04:00
|
|
|
//go:build tools
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-01-08 07:19:38 -05:00
|
|
|
// 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
|
2023-03-14 12:18:33 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-03-27 04:42:30 -04:00
|
|
|
_ "github.com/google/go-licenses"
|
2024-01-30 08:39:49 -05:00
|
|
|
_ "github.com/google/keep-sorted"
|
2023-03-14 12:18:33 -04:00
|
|
|
_ "github.com/katexochen/sh/v3/cmd/shfmt"
|
2023-03-29 06:31:30 -04:00
|
|
|
_ "golang.org/x/tools/cmd/stringer"
|
2023-03-27 07:35:51 -04:00
|
|
|
_ "golang.org/x/vuln/cmd/govulncheck"
|
2023-03-14 12:18:33 -04:00
|
|
|
)
|