mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
2103de275a
* improve error handling in vulnerabilities cron * fix tests * Use errHandler and go mod tidy * Add dep that got removed by mod tidy * add dsl to tools * Add changes file Co-authored-by: Michal Nicpon <michal@fleetdm.com> Co-authored-by: Tomas Touceda <chiiph@gmail.com>
13 lines
247 B
Go
13 lines
247 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/fleetdm/goose"
|
|
_ "github.com/goreleaser/goreleaser"
|
|
_ "github.com/kevinburke/go-bindata"
|
|
_ "github.com/mitchellh/gon/cmd/gon"
|
|
_ "github.com/quasilyte/go-ruleguard/dsl"
|
|
)
|