├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── go.mod ├── image-1.png └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/serhack/pdf-diff 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/image-1.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serhack/pdf-diff/HEAD/main.go --------------------------------------------------------------------------------