Merge pull request #3743 from aoxn/master

fix: #3742 golint requires comments on non-main package for blank import
This commit is contained in:
Rolf Neugebauer 2021-12-14 17:29:14 +00:00 committed by GitHub
commit be43e99310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,9 @@ package moby
import ( import (
"crypto/sha256" "crypto/sha256"
// fix: #3742
// golint requires comments on non-main(test)
// package for blank import
_ "embed" _ "embed"
"fmt" "fmt"
"io" "io"

View File

@ -3,6 +3,9 @@ package moby
import ( import (
"archive/tar" "archive/tar"
"bytes" "bytes"
// fix: #3742
// golint requires comments on non-main(test)
// package for blank import
_ "embed" _ "embed"
"fmt" "fmt"
"io" "io"