├── .gitignore ├── LICENSE ├── README.md ├── Release └── GoWxDump.exe ├── anonfiles_util.go ├── clash_util.go ├── cmd.go ├── cmd_action.go ├── config.go ├── db └── db.go ├── decrypt.go ├── encrypt.go ├── global.go ├── go.mod ├── go.sum ├── main.go ├── tbot_util.go ├── utility.go ├── version_list.go └── wechat_util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/README.md -------------------------------------------------------------------------------- /Release/GoWxDump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/Release/GoWxDump.exe -------------------------------------------------------------------------------- /anonfiles_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/anonfiles_util.go -------------------------------------------------------------------------------- /clash_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/clash_util.go -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/cmd.go -------------------------------------------------------------------------------- /cmd_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/cmd_action.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/config.go -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/db/db.go -------------------------------------------------------------------------------- /decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/decrypt.go -------------------------------------------------------------------------------- /encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/encrypt.go -------------------------------------------------------------------------------- /global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/global.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/main.go -------------------------------------------------------------------------------- /tbot_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/tbot_util.go -------------------------------------------------------------------------------- /utility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/utility.go -------------------------------------------------------------------------------- /version_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/version_list.go -------------------------------------------------------------------------------- /wechat_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpenserCai/GoWxDump/HEAD/wechat_util.go --------------------------------------------------------------------------------