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

import (
	"errors"
	"net/http"

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

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