Categorygithub.com/goreleaser/archive
repositorypackage
1.1.3
Repository: https://github.com/goreleaser/archive.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

archive

A simple Go archiving library.

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. We appreciate your contribution. Please refer to our contributing guidelines.

Software License Travis Coverage Status Go Doc Go Report Card Powered By: GoReleaser

Example usage

file, err := os.Create("file.zip")
if err != nil {
  // deal with the error
}
archive := archive.New(file)
defer archive.Close()
archive.Add("file.txt", "/path/to/file.txt")