1
0
Fork 0
collect/archiver/archiver.go
Andrew Tomaka bde7aeed90
Apply standard Go formatting and update project documentation
- Run go fmt on all Go files to ensure consistent formatting
- Add official Go tooling commands to CLAUDE.md for code quality
- Update project status to reflect current implementation state
2025-06-12 22:02:26 -04:00

8 lines
211 B
Go

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
}