blocky/tools.go

14 lines
361 B
Go
Raw Normal View History

//go:build tools
// +build tools
// see https://play-with-go.dev/tools-as-dependencies_go115_en/
// and https://www.jvt.me/posts/2022/06/15/go-tools-dependency-management/
package tools
import (
_ "github.com/abice/go-enum"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/onsi/ginkgo/v2/ginkgo"
_ "github.com/swaggo/swag/cmd/swag"
)