
This PS makes sure we have linter and unit tests processed. The code has been reformatted to adhere to Go's code formatting conventions. Change-Id: I31f15d6d6c4b9bda7e3837941b6c9c3c3735aea7
10 lines
190 B
Go
10 lines
190 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
// These imports are all tools used in the building and testing process
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|