├── .gitignore ├── GoGameServer.png ├── README.md ├── config └── local │ ├── log.json │ ├── mongo.json │ ├── mysql.json │ ├── redis.json │ └── service.json ├── core ├── config │ ├── class.go │ └── config.go ├── consts │ ├── errCode.go │ ├── service.go │ └── serviceType.go ├── global.go ├── libs │ ├── array │ │ └── array.go │ ├── common │ │ └── common.go │ ├── consul │ │ ├── client.go │ │ ├── kv.go │ │ └── server.go │ ├── dict │ │ └── dict.go │ ├── export.go │ ├── grpc │ │ ├── client.go │ │ ├── ipc │ │ │ ├── client.go │ │ │ ├── ipc.pb.go │ │ │ ├── ipc.proto │ │ │ ├── ipc_grpc.pb.go │ │ │ └── server.go │ │ └── server.go │ ├── guid │ │ └── guid.go │ ├── hash │ │ ├── md5.go │ │ └── murmurHash.go │ ├── jwt │ │ └── jwt.go │ ├── logger │ │ └── logger.go │ ├── mongo │ │ └── client.go │ ├── mysql │ │ └── client.go │ ├── protos │ │ └── protos.go │ ├── random │ │ └── random.go │ ├── redis │ │ └── client.go │ ├── request │ │ └── request.go │ ├── rpc │ │ ├── client.go │ │ └── server.go │ ├── sessions │ │ ├── backSession.go │ │ ├── backSessionService.go │ │ ├── frontSession.go │ │ ├── frontSessionService.go │ │ └── session.go │ ├── socket │ │ ├── frontCodec.go │ │ └── socket.go │ ├── stack │ │ └── stack.go │ ├── system │ │ └── system.go │ ├── timer │ │ └── timer.go │ └── websocket │ │ ├── frontCodec.go │ │ └── websocket.go ├── messages │ ├── frontMessage.go │ ├── ipcClientMessage.go │ ├── ipcServerMessage.go │ └── ipcServerMessageHandle.go └── service │ ├── service.go │ ├── service_handle.go │ ├── service_http.go │ ├── service_ipc.go │ ├── service_mongo.go │ ├── service_mysql.go │ ├── service_pprof.go │ ├── service_redis.go │ ├── service_rpc.go │ ├── service_socket.go │ └── service_websocket.go ├── dbs └── user.sql ├── go.mod ├── go.sum ├── proto.sh ├── readme ├── run.sh ├── servives ├── api │ ├── controllers │ │ ├── connector.go │ │ └── default.go │ └── main.go ├── chat │ ├── cache │ │ └── online.go │ ├── main.go │ ├── model │ │ └── chatUser.go │ └── module │ │ └── chat.go ├── connector │ ├── cache │ │ └── serverCache.go │ ├── main.go │ ├── messages │ │ ├── frontMessage.go │ │ └── frontMessageHandle.go │ └── module │ │ └── server.go ├── game │ ├── main.go │ └── module │ │ └── user.go ├── log │ └── main.go ├── login │ ├── cache │ │ └── online.go │ ├── main.go │ ├── model │ │ └── onlineUser.go │ └── module │ │ └── login.go ├── public │ ├── common.go │ ├── errCodes │ │ └── errCode.go │ ├── gameProto │ │ ├── gameProto.go │ │ ├── gameProto.pb.go │ │ ├── gameProto.proto │ │ └── gameProtoMsgId.go │ ├── mongoInstances │ │ └── mongoInstance.go │ ├── mongoModels │ │ └── user.go │ ├── mysqlInstances │ │ └── mysqlInstance.go │ ├── mysqlModels │ │ └── user.go │ ├── redisCaches │ │ └── user.go │ ├── redisInstances │ │ └── redisInstance.go │ ├── redisKeys │ │ └── redisKey.go │ └── token.go └── test │ ├── main.go │ └── main_ws.go ├── stop.sh └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/.gitignore -------------------------------------------------------------------------------- /GoGameServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/GoGameServer.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/README.md -------------------------------------------------------------------------------- /config/local/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/config/local/log.json -------------------------------------------------------------------------------- /config/local/mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/config/local/mongo.json -------------------------------------------------------------------------------- /config/local/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/config/local/mysql.json -------------------------------------------------------------------------------- /config/local/redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/config/local/redis.json -------------------------------------------------------------------------------- /config/local/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/config/local/service.json -------------------------------------------------------------------------------- /core/config/class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/config/class.go -------------------------------------------------------------------------------- /core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/config/config.go -------------------------------------------------------------------------------- /core/consts/errCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/consts/errCode.go -------------------------------------------------------------------------------- /core/consts/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/consts/service.go -------------------------------------------------------------------------------- /core/consts/serviceType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/consts/serviceType.go -------------------------------------------------------------------------------- /core/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/global.go -------------------------------------------------------------------------------- /core/libs/array/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/array/array.go -------------------------------------------------------------------------------- /core/libs/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/common/common.go -------------------------------------------------------------------------------- /core/libs/consul/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/consul/client.go -------------------------------------------------------------------------------- /core/libs/consul/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/consul/kv.go -------------------------------------------------------------------------------- /core/libs/consul/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/consul/server.go -------------------------------------------------------------------------------- /core/libs/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/dict/dict.go -------------------------------------------------------------------------------- /core/libs/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/export.go -------------------------------------------------------------------------------- /core/libs/grpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/client.go -------------------------------------------------------------------------------- /core/libs/grpc/ipc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/ipc/client.go -------------------------------------------------------------------------------- /core/libs/grpc/ipc/ipc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/ipc/ipc.pb.go -------------------------------------------------------------------------------- /core/libs/grpc/ipc/ipc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/ipc/ipc.proto -------------------------------------------------------------------------------- /core/libs/grpc/ipc/ipc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/ipc/ipc_grpc.pb.go -------------------------------------------------------------------------------- /core/libs/grpc/ipc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/ipc/server.go -------------------------------------------------------------------------------- /core/libs/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/grpc/server.go -------------------------------------------------------------------------------- /core/libs/guid/guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/guid/guid.go -------------------------------------------------------------------------------- /core/libs/hash/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/hash/md5.go -------------------------------------------------------------------------------- /core/libs/hash/murmurHash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/hash/murmurHash.go -------------------------------------------------------------------------------- /core/libs/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/jwt/jwt.go -------------------------------------------------------------------------------- /core/libs/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/logger/logger.go -------------------------------------------------------------------------------- /core/libs/mongo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/mongo/client.go -------------------------------------------------------------------------------- /core/libs/mysql/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/mysql/client.go -------------------------------------------------------------------------------- /core/libs/protos/protos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/protos/protos.go -------------------------------------------------------------------------------- /core/libs/random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/random/random.go -------------------------------------------------------------------------------- /core/libs/redis/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/redis/client.go -------------------------------------------------------------------------------- /core/libs/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/request/request.go -------------------------------------------------------------------------------- /core/libs/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/rpc/client.go -------------------------------------------------------------------------------- /core/libs/rpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/rpc/server.go -------------------------------------------------------------------------------- /core/libs/sessions/backSession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/sessions/backSession.go -------------------------------------------------------------------------------- /core/libs/sessions/backSessionService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/sessions/backSessionService.go -------------------------------------------------------------------------------- /core/libs/sessions/frontSession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/sessions/frontSession.go -------------------------------------------------------------------------------- /core/libs/sessions/frontSessionService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/sessions/frontSessionService.go -------------------------------------------------------------------------------- /core/libs/sessions/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/sessions/session.go -------------------------------------------------------------------------------- /core/libs/socket/frontCodec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/socket/frontCodec.go -------------------------------------------------------------------------------- /core/libs/socket/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/socket/socket.go -------------------------------------------------------------------------------- /core/libs/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/stack/stack.go -------------------------------------------------------------------------------- /core/libs/system/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/system/system.go -------------------------------------------------------------------------------- /core/libs/timer/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/timer/timer.go -------------------------------------------------------------------------------- /core/libs/websocket/frontCodec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/websocket/frontCodec.go -------------------------------------------------------------------------------- /core/libs/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/libs/websocket/websocket.go -------------------------------------------------------------------------------- /core/messages/frontMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/messages/frontMessage.go -------------------------------------------------------------------------------- /core/messages/ipcClientMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/messages/ipcClientMessage.go -------------------------------------------------------------------------------- /core/messages/ipcServerMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/messages/ipcServerMessage.go -------------------------------------------------------------------------------- /core/messages/ipcServerMessageHandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/messages/ipcServerMessageHandle.go -------------------------------------------------------------------------------- /core/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service.go -------------------------------------------------------------------------------- /core/service/service_handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_handle.go -------------------------------------------------------------------------------- /core/service/service_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_http.go -------------------------------------------------------------------------------- /core/service/service_ipc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_ipc.go -------------------------------------------------------------------------------- /core/service/service_mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_mongo.go -------------------------------------------------------------------------------- /core/service/service_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_mysql.go -------------------------------------------------------------------------------- /core/service/service_pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_pprof.go -------------------------------------------------------------------------------- /core/service/service_redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_redis.go -------------------------------------------------------------------------------- /core/service/service_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_rpc.go -------------------------------------------------------------------------------- /core/service/service_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_socket.go -------------------------------------------------------------------------------- /core/service/service_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/core/service/service_websocket.go -------------------------------------------------------------------------------- /dbs/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/dbs/user.sql -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/go.sum -------------------------------------------------------------------------------- /proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/proto.sh -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/readme -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/run.sh -------------------------------------------------------------------------------- /servives/api/controllers/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/api/controllers/connector.go -------------------------------------------------------------------------------- /servives/api/controllers/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/api/controllers/default.go -------------------------------------------------------------------------------- /servives/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/api/main.go -------------------------------------------------------------------------------- /servives/chat/cache/online.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/chat/cache/online.go -------------------------------------------------------------------------------- /servives/chat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/chat/main.go -------------------------------------------------------------------------------- /servives/chat/model/chatUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/chat/model/chatUser.go -------------------------------------------------------------------------------- /servives/chat/module/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/chat/module/chat.go -------------------------------------------------------------------------------- /servives/connector/cache/serverCache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/connector/cache/serverCache.go -------------------------------------------------------------------------------- /servives/connector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/connector/main.go -------------------------------------------------------------------------------- /servives/connector/messages/frontMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/connector/messages/frontMessage.go -------------------------------------------------------------------------------- /servives/connector/messages/frontMessageHandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/connector/messages/frontMessageHandle.go -------------------------------------------------------------------------------- /servives/connector/module/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/connector/module/server.go -------------------------------------------------------------------------------- /servives/game/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/game/main.go -------------------------------------------------------------------------------- /servives/game/module/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/game/module/user.go -------------------------------------------------------------------------------- /servives/log/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/log/main.go -------------------------------------------------------------------------------- /servives/login/cache/online.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/login/cache/online.go -------------------------------------------------------------------------------- /servives/login/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/login/main.go -------------------------------------------------------------------------------- /servives/login/model/onlineUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/login/model/onlineUser.go -------------------------------------------------------------------------------- /servives/login/module/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/login/module/login.go -------------------------------------------------------------------------------- /servives/public/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/common.go -------------------------------------------------------------------------------- /servives/public/errCodes/errCode.go: -------------------------------------------------------------------------------- 1 | package errCodes 2 | 3 | const ( 4 | PARAM_ERROR = 1 //参数错误 5 | ) 6 | -------------------------------------------------------------------------------- /servives/public/gameProto/gameProto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/gameProto/gameProto.go -------------------------------------------------------------------------------- /servives/public/gameProto/gameProto.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/gameProto/gameProto.pb.go -------------------------------------------------------------------------------- /servives/public/gameProto/gameProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/gameProto/gameProto.proto -------------------------------------------------------------------------------- /servives/public/gameProto/gameProtoMsgId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/gameProto/gameProtoMsgId.go -------------------------------------------------------------------------------- /servives/public/mongoInstances/mongoInstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/mongoInstances/mongoInstance.go -------------------------------------------------------------------------------- /servives/public/mongoModels/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/mongoModels/user.go -------------------------------------------------------------------------------- /servives/public/mysqlInstances/mysqlInstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/mysqlInstances/mysqlInstance.go -------------------------------------------------------------------------------- /servives/public/mysqlModels/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/mysqlModels/user.go -------------------------------------------------------------------------------- /servives/public/redisCaches/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/redisCaches/user.go -------------------------------------------------------------------------------- /servives/public/redisInstances/redisInstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/redisInstances/redisInstance.go -------------------------------------------------------------------------------- /servives/public/redisKeys/redisKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/redisKeys/redisKey.go -------------------------------------------------------------------------------- /servives/public/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/public/token.go -------------------------------------------------------------------------------- /servives/test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/test/main.go -------------------------------------------------------------------------------- /servives/test/main_ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/servives/test/main_ws.go -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/stop.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicaoyimuys/GoGameServer/HEAD/test.sh --------------------------------------------------------------------------------