├── .gitignore ├── LICENSE ├── README.md ├── _webhookExample └── main.py ├── assisant.go ├── bridge ├── arg │ └── arg.go ├── bridge.go ├── proxy.go ├── result │ └── result.go └── uuid.go ├── gurad.go ├── main.go ├── service ├── restfull.go └── uuid.go ├── tuling.go ├── uuidprocessor └── processor.go └── xiaoice.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/README.md -------------------------------------------------------------------------------- /_webhookExample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/_webhookExample/main.py -------------------------------------------------------------------------------- /assisant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/assisant.go -------------------------------------------------------------------------------- /bridge/arg/arg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/bridge/arg/arg.go -------------------------------------------------------------------------------- /bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/bridge/bridge.go -------------------------------------------------------------------------------- /bridge/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/bridge/proxy.go -------------------------------------------------------------------------------- /bridge/result/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/bridge/result/result.go -------------------------------------------------------------------------------- /bridge/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/bridge/uuid.go -------------------------------------------------------------------------------- /gurad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/gurad.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/main.go -------------------------------------------------------------------------------- /service/restfull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/service/restfull.go -------------------------------------------------------------------------------- /service/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/service/uuid.go -------------------------------------------------------------------------------- /tuling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/tuling.go -------------------------------------------------------------------------------- /uuidprocessor/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/uuidprocessor/processor.go -------------------------------------------------------------------------------- /xiaoice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinGong2013/ggbot/HEAD/xiaoice.go --------------------------------------------------------------------------------