├── .github ├── ISSUE_TEMPLATE │ ├── bug--.md │ └── publish--.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── bucket ├── bilisearchspider.json ├── calendar.json ├── eclanrank.json ├── eqa.json ├── forward_ad_killer.json ├── generator.json ├── genshin.json ├── music.json ├── pcrmemorygames.json ├── pcrmiddaymusic.json ├── pcrsealkiller.json ├── pokemanpcr.json ├── rss.json ├── shebot-conhead.json ├── shebot-rua.json ├── steam.json ├── traceanime.json ├── training.json ├── weather.json ├── yocool.json └── zhihu.json ├── cmd ├── export.go ├── init.go ├── install.go ├── list.go ├── root.go ├── set.go └── update.go ├── docs └── plugin.md ├── go.mod ├── go.sum ├── main.go ├── package.json └── utils ├── download.go └── file.go /.github/ISSUE_TEMPLATE/bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/.github/ISSUE_TEMPLATE/bug--.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/publish--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/.github/ISSUE_TEMPLATE/publish--.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/README.md -------------------------------------------------------------------------------- /bucket/bilisearchspider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/bilisearchspider.json -------------------------------------------------------------------------------- /bucket/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/calendar.json -------------------------------------------------------------------------------- /bucket/eclanrank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/eclanrank.json -------------------------------------------------------------------------------- /bucket/eqa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/eqa.json -------------------------------------------------------------------------------- /bucket/forward_ad_killer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/forward_ad_killer.json -------------------------------------------------------------------------------- /bucket/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/generator.json -------------------------------------------------------------------------------- /bucket/genshin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/genshin.json -------------------------------------------------------------------------------- /bucket/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/music.json -------------------------------------------------------------------------------- /bucket/pcrmemorygames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/pcrmemorygames.json -------------------------------------------------------------------------------- /bucket/pcrmiddaymusic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/pcrmiddaymusic.json -------------------------------------------------------------------------------- /bucket/pcrsealkiller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/pcrsealkiller.json -------------------------------------------------------------------------------- /bucket/pokemanpcr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/pokemanpcr.json -------------------------------------------------------------------------------- /bucket/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/rss.json -------------------------------------------------------------------------------- /bucket/shebot-conhead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/shebot-conhead.json -------------------------------------------------------------------------------- /bucket/shebot-rua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/shebot-rua.json -------------------------------------------------------------------------------- /bucket/steam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/steam.json -------------------------------------------------------------------------------- /bucket/traceanime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/traceanime.json -------------------------------------------------------------------------------- /bucket/training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/training.json -------------------------------------------------------------------------------- /bucket/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/weather.json -------------------------------------------------------------------------------- /bucket/yocool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/yocool.json -------------------------------------------------------------------------------- /bucket/zhihu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/bucket/zhihu.json -------------------------------------------------------------------------------- /cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/export.go -------------------------------------------------------------------------------- /cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/init.go -------------------------------------------------------------------------------- /cmd/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/install.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/set.go -------------------------------------------------------------------------------- /cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/cmd/update.go -------------------------------------------------------------------------------- /docs/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/docs/plugin.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/main.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/package.json -------------------------------------------------------------------------------- /utils/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/utils/download.go -------------------------------------------------------------------------------- /utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/hsn/HEAD/utils/file.go --------------------------------------------------------------------------------