├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── accounts.json ├── accounts.json.demo ├── cmd ├── login.go ├── login2.go ├── refresh.go ├── reload.go ├── root.go ├── sess.go ├── status.go └── tokens.go ├── go.mod ├── go.sum ├── main.go ├── pic ├── image.png ├── image2.png ├── image3.png └── image4.png └── pkg └── api └── api.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/README.md -------------------------------------------------------------------------------- /accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/accounts.json -------------------------------------------------------------------------------- /accounts.json.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/accounts.json.demo -------------------------------------------------------------------------------- /cmd/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/login.go -------------------------------------------------------------------------------- /cmd/login2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/login2.go -------------------------------------------------------------------------------- /cmd/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/refresh.go -------------------------------------------------------------------------------- /cmd/reload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/reload.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/sess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/sess.go -------------------------------------------------------------------------------- /cmd/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/status.go -------------------------------------------------------------------------------- /cmd/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/cmd/tokens.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/main.go -------------------------------------------------------------------------------- /pic/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/pic/image.png -------------------------------------------------------------------------------- /pic/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/pic/image2.png -------------------------------------------------------------------------------- /pic/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/pic/image3.png -------------------------------------------------------------------------------- /pic/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/pic/image4.png -------------------------------------------------------------------------------- /pkg/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljnchn/pandora-cli/HEAD/pkg/api/api.go --------------------------------------------------------------------------------