diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-09 11:33:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 11:33:26 +0100 |
commit | 36ec835298d0e33a2f783ceaf4ed19a3b62075f7 (patch) | |
tree | 114682d632c9f1e4e89ca852a9a2bab40ccb8582 | |
parent | 789d579bc43cab0a179a17276478100b4b80e6fc (diff) | |
parent | 2033fa4c794e8b0ac4c551073e5f7798fb729add (diff) | |
download | podman-36ec835298d0e33a2f783ceaf4ed19a3b62075f7.tar.gz podman-36ec835298d0e33a2f783ceaf4ed19a3b62075f7.tar.bz2 podman-36ec835298d0e33a2f783ceaf4ed19a3b62075f7.zip |
Merge pull request #9671 from vrothberg/fix-9670
rm pkg/api/handlers/libpod/copy.go
-rw-r--r-- | pkg/api/handlers/libpod/copy.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pkg/api/handlers/libpod/copy.go b/pkg/api/handlers/libpod/copy.go deleted file mode 100644 index 4b345bacc..000000000 --- a/pkg/api/handlers/libpod/copy.go +++ /dev/null @@ -1,12 +0,0 @@ -package libpod - -import ( - "net/http" - - "github.com/containers/podman/v3/pkg/api/handlers/utils" - "github.com/pkg/errors" -) - -func Archive(w http.ResponseWriter, r *http.Request) { - utils.Error(w, "not implemented", http.StatusNotImplemented, errors.New("not implemented")) -} |