summaryrefslogtreecommitdiff
path: root/pkg/bindings/volumes/types.go
diff options
context:
space:
mode:
authorPaul Holzinger <paul.holzinger@web.de>2021-01-19 23:03:51 +0100
committerPaul Holzinger <paul.holzinger@web.de>2021-01-21 19:18:51 +0100
commit9d31fed5f75186f618e95ab7492ef6bc2b511d5f (patch)
tree11215b0dd70351b4157fd19a17c65d4fcfca77ed /pkg/bindings/volumes/types.go
parent7d024a2fc8c675e4d34e3b34b56b6217a48ef9ce (diff)
downloadpodman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.tar.gz
podman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.tar.bz2
podman-9d31fed5f75186f618e95ab7492ef6bc2b511d5f.zip
podman volume exists
Add podman volume exists command with remote support. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/bindings/volumes/types.go')
-rw-r--r--pkg/bindings/volumes/types.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/bindings/volumes/types.go b/pkg/bindings/volumes/types.go
index 379174e33..3fda77ddd 100644
--- a/pkg/bindings/volumes/types.go
+++ b/pkg/bindings/volumes/types.go
@@ -30,3 +30,9 @@ type RemoveOptions struct {
// Force removes the volume even if it is being used
Force *bool
}
+
+//go:generate go run ../generator/generator.go ExistsOptions
+// ExistsOptions are optional options for checking
+// if a volume exists
+type ExistsOptions struct {
+}