summaryrefslogtreecommitdiff
path: root/cmd/podman/common/inspect.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/common/inspect.go')
-rw-r--r--cmd/podman/common/inspect.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/podman/common/inspect.go b/cmd/podman/common/inspect.go
new file mode 100644
index 000000000..12a5af5a9
--- /dev/null
+++ b/cmd/podman/common/inspect.go
@@ -0,0 +1,16 @@
+package common
+
+const (
+ // AllType can be of type ImageType or ContainerType.
+ AllType = "all"
+ // ContainerType is the container type.
+ ContainerType = "container"
+ // ImageType is the image type.
+ ImageType = "image"
+ // NetworkType is the network type
+ NetworkType = "network"
+ // PodType is the pod type.
+ PodType = "pod"
+ // VolumeType is the volume type
+ VolumeType = "volume"
+)