├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── go.mod ├── go.sum ├── main.go └── service ├── config.go ├── gpt.go ├── util.go └── wechat.go /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/main.go -------------------------------------------------------------------------------- /service/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/service/config.go -------------------------------------------------------------------------------- /service/gpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/service/gpt.go -------------------------------------------------------------------------------- /service/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/service/util.go -------------------------------------------------------------------------------- /service/wechat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razertory/gpt-wework/HEAD/service/wechat.go --------------------------------------------------------------------------------