From 2033fa4c794e8b0ac4c551073e5f7798fb729add Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Tue, 9 Mar 2021 09:25:19 +0100 Subject: rm pkg/api/handlers/libpod/copy.go Remove the file since it only contains dead code. The archive endpoints are shared between the libpod and the compat API and both use the compat package. [NO TESTS NEEDED] since we're removing dead code. Fixes: #9670 Signed-off-by: Valentin Rothberg --- pkg/api/handlers/libpod/copy.go | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 pkg/api/handlers/libpod/copy.go (limited to 'pkg/api/handlers/libpod') 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")) -} -- cgit v1.2.3-54-g00ecf