summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/compat/containers_archive.go
blob: 293a17e0f45a38eb7eb3027309ca7f29f32ce61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package compat

import (
	"errors"
	"net/http"

	"github.com/containers/podman/v2/pkg/api/handlers/utils"
)

func Archive(w http.ResponseWriter, r *http.Request) {
	utils.Error(w, "not implemented", http.StatusNotImplemented, errors.New("not implemented"))
}