Zipper
Golang Lib to create a Zip Archive of a file or folder. That will be compatible with Java's ZipInputStream
Usage
import (
"log"
"github.com/30x/zipper"
)
func main() {
err := zipper.Archive("~/Source/dir/", "./output.zip")
if err != nil {
log.Fatal(err)
}
}