summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/copy.go
blob: 4b345bacc18b621a04955598bd9916fd069fb9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"))
}