# 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.
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")
# Functions
New archive If the exentions of the target file is .zip, the archive will be in the zip format, otherwise, it will be a tar.gz archive.
# Interfaces
Archive represents a compression archive files from disk can be written to.