├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .goreleaser.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── cmd └── khinsider │ ├── main.go │ ├── search.go │ └── update.go ├── go.mod ├── go.sum ├── internal └── updater │ └── updater.go ├── main.go ├── pkg ├── download │ └── downloader.go ├── indexer │ └── index.go ├── scrape │ └── scrape.go ├── search │ └── filter.go ├── types │ └── types.go ├── update │ └── update.go └── util │ └── util.go ├── renovate.json └── screenshot.png /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | main 3 | .idea 4 | .goreleaser 5 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/README.md -------------------------------------------------------------------------------- /cmd/khinsider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/cmd/khinsider/main.go -------------------------------------------------------------------------------- /cmd/khinsider/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/cmd/khinsider/search.go -------------------------------------------------------------------------------- /cmd/khinsider/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/cmd/khinsider/update.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/go.sum -------------------------------------------------------------------------------- /internal/updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/internal/updater/updater.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/main.go -------------------------------------------------------------------------------- /pkg/download/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/download/downloader.go -------------------------------------------------------------------------------- /pkg/indexer/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/indexer/index.go -------------------------------------------------------------------------------- /pkg/scrape/scrape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/scrape/scrape.go -------------------------------------------------------------------------------- /pkg/search/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/search/filter.go -------------------------------------------------------------------------------- /pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/types/types.go -------------------------------------------------------------------------------- /pkg/update/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/update/update.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcus-crane/khinsider/HEAD/screenshot.png --------------------------------------------------------------------------------