Older versions of Go do not format these comments, so we can already reformat them ahead of time to prevent gofmt linting failing once we update to Go 1.19 or up. Result of: gofmt -s -w $(find . -type f -name '*.go' | grep -v "/vendor/") With some manual adjusting. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
5 lines
203 B
Go
5 lines
203 B
Go
// Package test is a test-only package that can be used by other cli package to write unit test.
|
|
//
|
|
// It as an internal package and cannot be used outside of github.com/docker/cli package.
|
|
package test
|