github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/api/handlers/compat/containers_archive.go (about)

     1  package compat
     2  
     3  import (
     4  	"errors"
     5  	"net/http"
     6  
     7  	"github.com/containers/podman/v2/pkg/api/handlers/utils"
     8  )
     9  
    10  func Archive(w http.ResponseWriter, r *http.Request) {
    11  	utils.Error(w, "not implemented", http.StatusNotImplemented, errors.New("not implemented"))
    12  }