github.com/alloyci/alloy-runner@v1.0.1-0.20180222164613-925503ccafd6/helpers/archives/zip_extra_windows.go (about)

     1  package archives
     2  
     3  import (
     4  	"archive/zip"
     5  	"io"
     6  	"os"
     7  )
     8  
     9  func createZipUIDGidField(w io.Writer, fi os.FileInfo) (err error) {
    10  	// TODO: currently not supported
    11  	return nil
    12  }
    13  
    14  func processZipUIDGidField(data []byte, file *zip.FileHeader) error {
    15  	// TODO: currently not supported
    16  	return nil
    17  }