package archiver import "github.com/atomaka/collect/collector" // Archiver defines the interface for creating archives type Archiver interface { Create(outputPath string, files []collector.FileEntry) error }