github.com/supabase/cli@v1.168.1/tools/tools.go (about)

     1  //go:build tools
     2  
     3  package tools
     4  
     5  import (
     6  	// Import all required tools so that they can be version controlled via go.mod & go.sum.
     7  	// These imports are tracked a sub package so as to not impact the dependencies of clients of
     8  	// the library.
     9  	// This should be migrated directly to go.mod when the following is complete:
    10  	// https://github.com/golang/go/issues/48429
    11  	_ "github.com/deepmap/oapi-codegen/cmd/oapi-codegen"
    12  	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    13  	_ "gotest.tools/gotestsum"
    14  )