├── .gitignore ├── .vscode └── launch.json ├── README.md ├── attach ├── 2882303761518338059_1.info.etd └── 2882303761518338059_2.info.etd ├── conf ├── app.go └── conf.yaml ├── grpcc └── client.go ├── main.go ├── mimc.log ├── robot ├── handler_message.go ├── handler_mimc_token.go ├── handler_robot.go ├── handler_status.go └── handler_token.go └── services ├── admin.go ├── contact.go ├── knowledge_base.go ├── message.go ├── robot.go ├── statistical.go └── user.go /.gitignore: -------------------------------------------------------------------------------- 1 | mimc.log 2 | nohup.out 3 | .vscode 4 | attach -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/README.md -------------------------------------------------------------------------------- /attach/2882303761518338059_1.info.etd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/attach/2882303761518338059_1.info.etd -------------------------------------------------------------------------------- /attach/2882303761518338059_2.info.etd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/attach/2882303761518338059_2.info.etd -------------------------------------------------------------------------------- /conf/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/conf/app.go -------------------------------------------------------------------------------- /conf/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/conf/conf.yaml -------------------------------------------------------------------------------- /grpcc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/grpcc/client.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/main.go -------------------------------------------------------------------------------- /mimc.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot/handler_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/robot/handler_message.go -------------------------------------------------------------------------------- /robot/handler_mimc_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/robot/handler_mimc_token.go -------------------------------------------------------------------------------- /robot/handler_robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/robot/handler_robot.go -------------------------------------------------------------------------------- /robot/handler_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/robot/handler_status.go -------------------------------------------------------------------------------- /robot/handler_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/robot/handler_token.go -------------------------------------------------------------------------------- /services/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/admin.go -------------------------------------------------------------------------------- /services/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/contact.go -------------------------------------------------------------------------------- /services/knowledge_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/knowledge_base.go -------------------------------------------------------------------------------- /services/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/message.go -------------------------------------------------------------------------------- /services/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/robot.go -------------------------------------------------------------------------------- /services/statistical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/statistical.go -------------------------------------------------------------------------------- /services/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxianqi/kefu_go_robot/HEAD/services/user.go --------------------------------------------------------------------------------