mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
12 lines
175 B
Go
12 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"
|
|
)
|