summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/generic/info.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2020-01-10 09:47:19 -0600
committerbaude <bbaude@redhat.com>2020-01-10 09:47:19 -0600
commitc3956b1974ce545446a443488497dfbc98dda1a8 (patch)
tree99f3257f307d40cd20f1aabd0666ebac1fb77851 /pkg/api/handlers/generic/info.go
parent25b34972f4c58ede6528e3ae25c54c29eb9034e1 (diff)
downloadpodman-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/info.go')
-rw-r--r--pkg/api/handlers/generic/info.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/generic/info.go b/pkg/api/handlers/generic/info.go
index 2bef8db4f..c9e79233d 100644
--- a/pkg/api/handlers/generic/info.go
+++ b/pkg/api/handlers/generic/info.go
@@ -2,8 +2,6 @@ package generic
import (
"fmt"
- "github.com/containers/libpod/pkg/api/handlers"
- "github.com/containers/libpod/pkg/api/handlers/utils"
"io/ioutil"
"net/http"
"os"
@@ -14,6 +12,8 @@ import (
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/config"
"github.com/containers/libpod/libpod/define"
+ "github.com/containers/libpod/pkg/api/handlers"
+ "github.com/containers/libpod/pkg/api/handlers/utils"
"github.com/containers/libpod/pkg/rootless"
"github.com/containers/libpod/pkg/sysinfo"
docker "github.com/docker/docker/api/types"