mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			259 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			259 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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"))
 | |
| }
 | 
