targo provides functions to create or extract tar archives. This package has
no dependencies and relies only on the Go standard library.
Usage (full documentation here)
func Create(destPath, dirPath string) error: create a tar archive fromdirPathintodestPath.func CreateInPlace(dirPath string) error: create a tar archive fromdirPath"in-place", iedirPathis removed once the archive has been created and adirPath.tarfile is created.func Extract(destPath, archivePath string) error: extract a tar archive fromarchivePathintodestPath.func ExtractInPlace(archivePath string) error: extract a tar archive fromarchivePath"in-place", iearchivePathis removed after the archive has been extracted (note: it expectsarchivePathto have a file extension).
