Add the missing import and a gitignore entry for bin

This commit is contained in:
Yuvraaj Kelkar 2021-05-09 11:21:01 -07:00
parent b10d3e43a4
commit fc448c2253
2 changed files with 4 additions and 0 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ result
# ignore JetBrains IDEs (GoLand) config folder
.idea
# Ignore the bin directory
bin

View File

@ -10,6 +10,7 @@ import (
"github.com/containers/common/pkg/retry"
"github.com/containers/image/v5/copy"
"github.com/containers/image/v5/docker/reference"
"github.com/containers/image/v5/manifest"
"github.com/containers/image/v5/transports"
"github.com/containers/image/v5/transports/alltransports"
encconfig "github.com/containers/ocicrypt/config"