summaryrefslogtreecommitdiff
path: root/cmd/podman/volumes
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-04-16 12:06:36 -0700
committerJhon Honce <jhonce@redhat.com>2020-04-21 07:56:10 -0700
commitb21a5b7ff470612e2bde5f120aecfbc1a0881689 (patch)
treea47e3a42d363a99537a4d154bfecd2eba0de40fd /cmd/podman/volumes
parentf4c2eb1d9dcff5feda5c3eae81ce1bcdbf166ec4 (diff)
downloadpodman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.tar.gz
podman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.tar.bz2
podman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.zip
Provide a json variable pointing to a configured json API
* All commands now using the same instance of json API * `json` variable created in each package to prevent `encoding/json` from being re-introduced Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podman/volumes')
-rw-r--r--cmd/podman/volumes/inspect.go1
-rw-r--r--cmd/podman/volumes/volume.go3
2 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/volumes/inspect.go b/cmd/podman/volumes/inspect.go
index feaaee176..79f65ea4a 100644
--- a/cmd/podman/volumes/inspect.go
+++ b/cmd/podman/volumes/inspect.go
@@ -1,7 +1,6 @@
package volumes
import (
- "encoding/json"
"fmt"
"html/template"
"os"
diff --git a/cmd/podman/volumes/volume.go b/cmd/podman/volumes/volume.go
index 06943da62..4d74ff084 100644
--- a/cmd/podman/volumes/volume.go
+++ b/cmd/podman/volumes/volume.go
@@ -7,6 +7,9 @@ import (
)
var (
+ // Pull in configured json library
+ json = registry.JsonLibrary()
+
// Command: podman _volume_
volumeCmd = &cobra.Command{
Use: "volume",