github.com/vipernet-xyz/tm@v0.34.24/tools/tools.go (about)

     1  //go:build tools
     2  
     3  // This file uses the recommended method for tracking developer tools in a go module.
     4  //
     5  // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
     6  
     7  package tools
     8  
     9  import (
    10  	_ "github.com/bufbuild/buf/cmd/buf"
    11  	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    12  	_ "github.com/vektra/mockery/v2"
    13  )