mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 18:34:31 -05:00
90f3336c8e
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
19 lines
473 B
Go
19 lines
473 B
Go
//go:build tools
|
|
|
|
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// 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/katexochen/sh/v3/cmd/shfmt"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
_ "golang.org/x/vuln/cmd/govulncheck"
|
|
)
|