gitextract_eo_umi2a/ ├── .codecov.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── codecov.yaml │ ├── go.yaml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── css/ │ └── css.go ├── go.mod ├── go.sum ├── htmlindex/ │ ├── attributes.go │ ├── htmlindex.go │ └── htmlindex_test.go ├── main.go └── scraper/ ├── checks.go ├── checks_test.go ├── cookies.go ├── download.go ├── download_test.go ├── fileutil.go ├── fileutil_test.go ├── fs.go ├── html.go ├── html_test.go ├── http.go ├── http_test.go ├── images.go ├── scraper.go ├── scraper_test.go ├── server.go ├── url.go └── url_test.go