Files
Daniel J Walsh a5e37ad280 Switch all references to github.com/containers/libpod -> podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-07-28 08:23:45 -04:00

13 lines
274 B
Go

package libpod
import (
"net/http"
"github.com/containers/podman/v2/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"))
}