summaryrefslogtreecommitdiff
path: root/libpod/image/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/image/config.go')
-rw-r--r--libpod/image/config.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/libpod/image/config.go b/libpod/image/config.go
deleted file mode 100644
index efd83d343..000000000
--- a/libpod/image/config.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package image
-
-const (
- // LatestTag describes the tag used to refer to the latest version
- // of an image
- LatestTag = "latest"
-)
-
-// ImageDeleteResponse is the response for removing an image from storage and containers
-// what was untagged vs actually removed
-type ImageDeleteResponse struct { //nolint
- Untagged []string `json:"untagged"`
- Deleted string `json:"deleted"`
-}