Revision 827e2e3581e2654e6b0c1b64c915fb35ee803b99 authored by William Banfield on 16 May 2022, 20:33:47 UTC, committed by William Banfield on 16 May 2022, 20:33:47 UTC
1 parent 62ecdf5
Raw File
tools.go
//go:build tools
// +build tools

// This file uses the recommended method for tracking developer tools in a go module.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

package tools

import (
	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
	_ "github.com/vektra/mockery/v2"
)
back to top