Files
podman/pkg/api/handlers/compat/containers_archive.go
Brent Baude 5dfddf04ee v2 copy endpoints
add copy endpoint inputs and outputs.  these endpoints are not implemented yet, nor are any bindings.  this allows us to update this later without having to change our api version.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2020-05-26 12:04:20 -05:00

13 lines
256 B
Go

package compat
import (
"errors"
"net/http"
"github.com/containers/libpod/pkg/api/handlers/utils"
)
func Archive(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "not implemented", http.StatusNotImplemented, errors.New("not implemented"))
}