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 <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2021-03-09 09:25:19 +01:00
parent 789d579bc4
commit 2033fa4c79

View File

@ -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"))
}