├── .gitignore ├── README.md ├── bin ├── config.json ├── wechatbot-386-linux ├── wechatbot-386.exe ├── wechatbot-amd64-darwin ├── wechatbot-amd64-linux └── wechatbot-amd64.exe ├── bootstrap └── bootstrap.go ├── config.dev.json ├── config └── config.go ├── go.mod ├── go.sum ├── gtp └── gtp.go ├── handlers ├── group_msg_handler.go ├── handler.go └── user_msg_handler.go ├── main.go └── service └── user.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/README.md -------------------------------------------------------------------------------- /bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/config.json -------------------------------------------------------------------------------- /bin/wechatbot-386-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/wechatbot-386-linux -------------------------------------------------------------------------------- /bin/wechatbot-386.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/wechatbot-386.exe -------------------------------------------------------------------------------- /bin/wechatbot-amd64-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/wechatbot-amd64-darwin -------------------------------------------------------------------------------- /bin/wechatbot-amd64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/wechatbot-amd64-linux -------------------------------------------------------------------------------- /bin/wechatbot-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bin/wechatbot-amd64.exe -------------------------------------------------------------------------------- /bootstrap/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/bootstrap/bootstrap.go -------------------------------------------------------------------------------- /config.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/config.dev.json -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/config/config.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/go.sum -------------------------------------------------------------------------------- /gtp/gtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/gtp/gtp.go -------------------------------------------------------------------------------- /handlers/group_msg_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/handlers/group_msg_handler.go -------------------------------------------------------------------------------- /handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/handlers/handler.go -------------------------------------------------------------------------------- /handlers/user_msg_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/handlers/user_msg_handler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/main.go -------------------------------------------------------------------------------- /service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malaohu/wechatbot/HEAD/service/user.go --------------------------------------------------------------------------------