fleet/tools.go
Zachary Winnerman 2103de275a
improve error handling in vulnerabilities cron (#7276)
* 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>
2022-08-18 16:53:58 -03:00

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"
)