- 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
8 lines
211 B
Go
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
|
|
}
|