├── .dockerignore ├── .github └── workflows │ ├── build.yml │ └── docker-build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bot ├── bot.go ├── db.go ├── init.go ├── logger.go ├── modules.go ├── musicRecognize.go ├── pic.go ├── processInline.go ├── processLyric.go ├── processMusic.go ├── processSearch.go └── tools.go ├── config-compose.ini ├── config_example.ini ├── docker-compose.yml ├── go.mod ├── go.sum ├── main.go ├── versions.json ├── versions_v2.2.json └── versions_v2.3.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/README.md -------------------------------------------------------------------------------- /bot/bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/bot.go -------------------------------------------------------------------------------- /bot/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/db.go -------------------------------------------------------------------------------- /bot/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/init.go -------------------------------------------------------------------------------- /bot/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/logger.go -------------------------------------------------------------------------------- /bot/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/modules.go -------------------------------------------------------------------------------- /bot/musicRecognize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/musicRecognize.go -------------------------------------------------------------------------------- /bot/pic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/pic.go -------------------------------------------------------------------------------- /bot/processInline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/processInline.go -------------------------------------------------------------------------------- /bot/processLyric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/processLyric.go -------------------------------------------------------------------------------- /bot/processMusic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/processMusic.go -------------------------------------------------------------------------------- /bot/processSearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/processSearch.go -------------------------------------------------------------------------------- /bot/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/bot/tools.go -------------------------------------------------------------------------------- /config-compose.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/config-compose.ini -------------------------------------------------------------------------------- /config_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/config_example.ini -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/main.go -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/versions.json -------------------------------------------------------------------------------- /versions_v2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/versions_v2.2.json -------------------------------------------------------------------------------- /versions_v2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoMengXinX/Music163bot-Go/HEAD/versions_v2.3.json --------------------------------------------------------------------------------