summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/copy.go
blob: a3b404bce97c17eef27d34bc0e4eae219515eb70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package libpod

import (
	"net/http"

	"github.com/containers/libpod/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"))
}