mirror of
https://github.com/securego/gosec.git
synced 2025-01-18 02:58:22 +02:00
13 lines
175 B
Go
13 lines
175 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
// nolint
|
|
import (
|
|
_ "github.com/lib/pq"
|
|
_ "golang.org/x/crypto/ssh"
|
|
_ "golang.org/x/lint/golint"
|
|
_ "golang.org/x/text"
|
|
)
|