(dirToZip string, targetFile *os.File)
| 18 | |
| 19 | type Zipper interface { |
| 20 | Zip(dirToZip string, targetFile *os.File) (err error) |
| 21 | IsZipFile(path string) bool |
| 22 | Unzip(appDir string, destDir string) (err error) |
| 23 | GetZipSize(zipFile *os.File) (int64, error) |
no outgoing calls
no test coverage detected