├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── fanbox-dl │ └── main.go ├── go.mod ├── go.sum ├── internal ├── applog │ ├── ctxval_log.go │ └── log.go ├── ctxval │ ├── slog_attrs.go │ └── slog_attrs_test.go └── tlsclient │ └── transport.go └── pkg └── fanbox ├── client.go ├── client_test.go ├── creator_id_lister.go ├── local_storage.go ├── official_api_client.go └── official_api_response.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [hareku] 4 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/README.md -------------------------------------------------------------------------------- /cmd/fanbox-dl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/cmd/fanbox-dl/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/go.sum -------------------------------------------------------------------------------- /internal/applog/ctxval_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/internal/applog/ctxval_log.go -------------------------------------------------------------------------------- /internal/applog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/internal/applog/log.go -------------------------------------------------------------------------------- /internal/ctxval/slog_attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/internal/ctxval/slog_attrs.go -------------------------------------------------------------------------------- /internal/ctxval/slog_attrs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/internal/ctxval/slog_attrs_test.go -------------------------------------------------------------------------------- /internal/tlsclient/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/internal/tlsclient/transport.go -------------------------------------------------------------------------------- /pkg/fanbox/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/client.go -------------------------------------------------------------------------------- /pkg/fanbox/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/client_test.go -------------------------------------------------------------------------------- /pkg/fanbox/creator_id_lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/creator_id_lister.go -------------------------------------------------------------------------------- /pkg/fanbox/local_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/local_storage.go -------------------------------------------------------------------------------- /pkg/fanbox/official_api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/official_api_client.go -------------------------------------------------------------------------------- /pkg/fanbox/official_api_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hareku/fanbox-dl/HEAD/pkg/fanbox/official_api_response.go --------------------------------------------------------------------------------