github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/api/handlers/libpod/copy.go (about) 1 package libpod 2 3 import ( 4 "net/http" 5 6 "github.com/containers/podman/v2/pkg/api/handlers/utils" 7 "github.com/pkg/errors" 8 ) 9 10 func Archive(w http.ResponseWriter, r *http.Request) { 11 utils.Error(w, "not implemented", http.StatusNotImplemented, errors.New("not implemented")) 12 }