├── Makefile ├── go.mod ├── go.sum └── main.go /Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | @go run main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/distriscrappy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/distriscrappy/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/distriscrappy/HEAD/main.go --------------------------------------------------------------------------------