Revision e7b9ee7cefa73279cd7d594181c49d1d3f0f2d9f authored by William Banfield on 04 November 2022, 18:04:35 UTC, committed by GitHub on 04 November 2022, 18:04:35 UTC
1 parent 7417ddf
Raw File
tools.go
//go: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/bufbuild/buf/cmd/buf"
	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
	_ "github.com/vektra/mockery/v2"
)
back to top