diff options
author | baude <bbaude@redhat.com> | 2020-01-10 09:47:19 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-01-10 09:47:19 -0600 |
commit | c3956b1974ce545446a443488497dfbc98dda1a8 (patch) | |
tree | 99f3257f307d40cd20f1aabd0666ebac1fb77851 /pkg/api/handlers/generic/containers_create.go | |
parent | 25b34972f4c58ede6528e3ae25c54c29eb9034e1 (diff) | |
download | podman-c3956b1974ce545446a443488497dfbc98dda1a8.tar.gz podman-c3956b1974ce545446a443488497dfbc98dda1a8.tar.bz2 podman-c3956b1974ce545446a443488497dfbc98dda1a8.zip |
address review comments before merge
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers/generic/containers_create.go')
-rw-r--r-- | pkg/api/handlers/generic/containers_create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/generic/containers_create.go b/pkg/api/handlers/generic/containers_create.go index 056f7e95c..ef5337abd 100644 --- a/pkg/api/handlers/generic/containers_create.go +++ b/pkg/api/handlers/generic/containers_create.go @@ -3,7 +3,6 @@ package generic import ( "encoding/json" "fmt" - "github.com/containers/libpod/pkg/api/handlers/utils" "net/http" "strings" @@ -12,6 +11,7 @@ import ( "github.com/containers/libpod/libpod/define" image2 "github.com/containers/libpod/libpod/image" "github.com/containers/libpod/pkg/api/handlers" + "github.com/containers/libpod/pkg/api/handlers/utils" "github.com/containers/libpod/pkg/namespaces" createconfig "github.com/containers/libpod/pkg/spec" "github.com/containers/storage" |