mirror of
https://github.com/containers/podman.git
synced 2025-09-15 20:56:00 +08:00

We missed bumping the go module, so let's do it now :) * Automated go code with github.com/sirkon/go-imports-rename * Manually via `vgrep podman/v2` the rest Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
13 lines
274 B
Go
13 lines
274 B
Go
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"))
|
|
}
|