├── .codeclimate.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeclimate.yml │ ├── dispatch.yml │ └── go.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS ├── Makefile ├── NOTICE ├── README.md ├── VERSION ├── docs └── images │ ├── go-wechaty.png │ └── goland.png ├── examples └── ding-dong-bot.go ├── go.mod ├── go.sum ├── wechaty-puppet-mock └── puppet_mock.go ├── wechaty-puppet-service ├── ca.go ├── config.go ├── envvars.go ├── filebox.go ├── grpc.go ├── helper.go ├── options.go ├── puppet_service.go ├── puppet_service_test.go ├── resolver.go └── service_endpoint.go ├── wechaty-puppet ├── events │ └── events.go ├── file-box │ ├── file_box.go │ ├── fileboxtype_string.go │ ├── testdata │ │ └── .gitignore │ └── type.go ├── filebox │ ├── file_box.go │ ├── file_box_base64.go │ ├── file_box_file.go │ ├── file_box_qrcode.go │ ├── file_box_stream.go │ ├── file_box_test.go │ ├── file_box_unknown.go │ ├── file_box_url.go │ ├── file_box_uuid.go │ ├── file_box_uuid_test.go │ ├── testdata │ │ └── dchaofei.txt │ ├── type.go │ └── type_string.go ├── helper │ ├── array.go │ ├── async.go │ ├── base64.go │ ├── file.go │ ├── file_test.go │ ├── fix_unknown_message.go │ ├── http_client.go │ ├── parase_recalled_msg.go │ └── testdata │ │ └── a.txt ├── log │ └── log.go ├── memory-card │ ├── memory_card.go │ ├── memory_card_test.go │ ├── storage │ │ ├── backend.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── nop.go │ │ └── testdata │ │ │ └── .gitignore │ └── testdata │ │ └── .gitignore ├── message_adapter.go ├── option.go ├── puppet.go └── schemas │ ├── contact.go │ ├── contactgender_string.go │ ├── contacttype_string.go │ ├── events.go │ ├── friendship.go │ ├── friendshiptype_string.go │ ├── image.go │ ├── imagetype_string.go │ ├── location.go │ ├── message.go │ ├── messagetype_string.go │ ├── mini_program.go │ ├── payload.go │ ├── payloadtype_string.go │ ├── puppet.go │ ├── puppeteventname_string.go │ ├── room.go │ ├── room_invitation.go │ ├── scanstatus_string.go │ ├── type.go │ └── url_link.go └── wechaty ├── accessory.go ├── config.go ├── config └── config.go ├── event.go ├── factory ├── config.go ├── contact.go ├── friendship.go ├── image.go ├── message.go ├── room.go ├── room_invitation.go ├── tag.go └── url_link.go ├── interface ├── accessory.go ├── contact.go ├── contact_self.go ├── friendship.go ├── image.go ├── message.go ├── mini_program.go ├── room.go ├── room_invitation.go ├── tag.go ├── url_link.go └── wechaty.go ├── option.go ├── plugin.go ├── user ├── config.go ├── contact.go ├── contact_self.go ├── friendship.go ├── image.go ├── location.go ├── message.go ├── mini_program.go ├── room.go ├── room_invitation.go ├── tag.go └── url_link.go ├── wechaty.go └── wechaty_test.go /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/workflows/codeclimate.yml -------------------------------------------------------------------------------- /.github/workflows/dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/workflows/dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.0 2 | -------------------------------------------------------------------------------- /docs/images/go-wechaty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/docs/images/go-wechaty.png -------------------------------------------------------------------------------- /docs/images/goland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/docs/images/goland.png -------------------------------------------------------------------------------- /examples/ding-dong-bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/examples/ding-dong-bot.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/go.sum -------------------------------------------------------------------------------- /wechaty-puppet-mock/puppet_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-mock/puppet_mock.go -------------------------------------------------------------------------------- /wechaty-puppet-service/ca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/ca.go -------------------------------------------------------------------------------- /wechaty-puppet-service/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/config.go -------------------------------------------------------------------------------- /wechaty-puppet-service/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/envvars.go -------------------------------------------------------------------------------- /wechaty-puppet-service/filebox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/filebox.go -------------------------------------------------------------------------------- /wechaty-puppet-service/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/grpc.go -------------------------------------------------------------------------------- /wechaty-puppet-service/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/helper.go -------------------------------------------------------------------------------- /wechaty-puppet-service/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/options.go -------------------------------------------------------------------------------- /wechaty-puppet-service/puppet_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/puppet_service.go -------------------------------------------------------------------------------- /wechaty-puppet-service/puppet_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/puppet_service_test.go -------------------------------------------------------------------------------- /wechaty-puppet-service/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/resolver.go -------------------------------------------------------------------------------- /wechaty-puppet-service/service_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet-service/service_endpoint.go -------------------------------------------------------------------------------- /wechaty-puppet/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/events/events.go -------------------------------------------------------------------------------- /wechaty-puppet/file-box/file_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/file-box/file_box.go -------------------------------------------------------------------------------- /wechaty-puppet/file-box/fileboxtype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/file-box/fileboxtype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/file-box/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | test.text 2 | -------------------------------------------------------------------------------- /wechaty-puppet/file-box/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/file-box/type.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_base64.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_file.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_qrcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_qrcode.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_stream.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_test.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_unknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_unknown.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_url.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_uuid.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/file_box_uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/file_box_uuid_test.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/testdata/dchaofei.txt: -------------------------------------------------------------------------------- 1 | https://github.com/dchaofei 2 | -------------------------------------------------------------------------------- /wechaty-puppet/filebox/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/type.go -------------------------------------------------------------------------------- /wechaty-puppet/filebox/type_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/filebox/type_string.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/array.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/async.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/base64.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/file.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/file_test.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/fix_unknown_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/fix_unknown_message.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/http_client.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/parase_recalled_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/helper/parase_recalled_msg.go -------------------------------------------------------------------------------- /wechaty-puppet/helper/testdata/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wechaty-puppet/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/log/log.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/memory_card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/memory_card.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/memory_card_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/memory_card_test.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/storage/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/storage/backend.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/storage/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/storage/file.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/storage/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/storage/file_test.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/storage/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/memory-card/storage/nop.go -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/storage/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | file.memory-card.json 2 | -------------------------------------------------------------------------------- /wechaty-puppet/memory-card/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | *.memory-card.json 2 | -------------------------------------------------------------------------------- /wechaty-puppet/message_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/message_adapter.go -------------------------------------------------------------------------------- /wechaty-puppet/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/option.go -------------------------------------------------------------------------------- /wechaty-puppet/puppet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/puppet.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/contact.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/contactgender_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/contactgender_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/contacttype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/contacttype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/events.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/friendship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/friendship.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/friendshiptype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/friendshiptype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/image.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/imagetype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/imagetype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/location.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/message.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/messagetype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/messagetype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/mini_program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/mini_program.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/payload.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/payloadtype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/payloadtype_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/puppet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/puppet.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/puppeteventname_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/puppeteventname_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/room.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/room_invitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/room_invitation.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/scanstatus_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/scanstatus_string.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/type.go -------------------------------------------------------------------------------- /wechaty-puppet/schemas/url_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty-puppet/schemas/url_link.go -------------------------------------------------------------------------------- /wechaty/accessory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/accessory.go -------------------------------------------------------------------------------- /wechaty/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/config.go -------------------------------------------------------------------------------- /wechaty/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/config/config.go -------------------------------------------------------------------------------- /wechaty/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/event.go -------------------------------------------------------------------------------- /wechaty/factory/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/config.go -------------------------------------------------------------------------------- /wechaty/factory/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/contact.go -------------------------------------------------------------------------------- /wechaty/factory/friendship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/friendship.go -------------------------------------------------------------------------------- /wechaty/factory/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/image.go -------------------------------------------------------------------------------- /wechaty/factory/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/message.go -------------------------------------------------------------------------------- /wechaty/factory/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/room.go -------------------------------------------------------------------------------- /wechaty/factory/room_invitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/room_invitation.go -------------------------------------------------------------------------------- /wechaty/factory/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/tag.go -------------------------------------------------------------------------------- /wechaty/factory/url_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/factory/url_link.go -------------------------------------------------------------------------------- /wechaty/interface/accessory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/accessory.go -------------------------------------------------------------------------------- /wechaty/interface/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/contact.go -------------------------------------------------------------------------------- /wechaty/interface/contact_self.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/contact_self.go -------------------------------------------------------------------------------- /wechaty/interface/friendship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/friendship.go -------------------------------------------------------------------------------- /wechaty/interface/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/image.go -------------------------------------------------------------------------------- /wechaty/interface/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/message.go -------------------------------------------------------------------------------- /wechaty/interface/mini_program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/mini_program.go -------------------------------------------------------------------------------- /wechaty/interface/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/room.go -------------------------------------------------------------------------------- /wechaty/interface/room_invitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/room_invitation.go -------------------------------------------------------------------------------- /wechaty/interface/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/tag.go -------------------------------------------------------------------------------- /wechaty/interface/url_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/url_link.go -------------------------------------------------------------------------------- /wechaty/interface/wechaty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/interface/wechaty.go -------------------------------------------------------------------------------- /wechaty/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/option.go -------------------------------------------------------------------------------- /wechaty/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/plugin.go -------------------------------------------------------------------------------- /wechaty/user/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/config.go -------------------------------------------------------------------------------- /wechaty/user/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/contact.go -------------------------------------------------------------------------------- /wechaty/user/contact_self.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/contact_self.go -------------------------------------------------------------------------------- /wechaty/user/friendship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/friendship.go -------------------------------------------------------------------------------- /wechaty/user/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/image.go -------------------------------------------------------------------------------- /wechaty/user/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/location.go -------------------------------------------------------------------------------- /wechaty/user/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/message.go -------------------------------------------------------------------------------- /wechaty/user/mini_program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/mini_program.go -------------------------------------------------------------------------------- /wechaty/user/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/room.go -------------------------------------------------------------------------------- /wechaty/user/room_invitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/room_invitation.go -------------------------------------------------------------------------------- /wechaty/user/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/tag.go -------------------------------------------------------------------------------- /wechaty/user/url_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/user/url_link.go -------------------------------------------------------------------------------- /wechaty/wechaty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/wechaty.go -------------------------------------------------------------------------------- /wechaty/wechaty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/go-wechaty/HEAD/wechaty/wechaty_test.go --------------------------------------------------------------------------------