├── .gitignore ├── LICENSE ├── common ├── conf │ └── sensitive.txt ├── define │ └── const.go ├── gamedata │ ├── data │ │ ├── DropItemConfing.conf │ │ ├── GlobalConfig.conf │ │ ├── ItemConfig.conf │ │ ├── MachineConfig.conf │ │ ├── MallConfig.conf │ │ ├── RechargeConfig.conf │ │ ├── TaskConfig.conf │ │ ├── TexasConfig.conf │ │ ├── TexasTestConfig.conf │ │ └── gamedata.tar │ ├── gamedata.go │ ├── gamedata_test.go │ └── repository │ │ ├── drop_item_confing │ │ └── DropItemConfingData.gen.go │ │ ├── global_config │ │ └── GlobalData.gen.go │ │ ├── item_config │ │ └── ItemData.gen.go │ │ ├── machine_config │ │ └── MachineData.gen.go │ │ ├── mall_config │ │ └── MallData.gen.go │ │ ├── recharge_config │ │ └── RechargeData.gen.go │ │ ├── task_config │ │ └── TaskData.gen.go │ │ ├── texas_config │ │ └── TexasData.gen.go │ │ └── texas_test_config │ │ └── TexasTestData.gen.go ├── gconf │ ├── config.go │ ├── config_test.go │ ├── server_conf.yaml │ └── server_conf_ide.yaml └── gfunc │ ├── game_func.go │ ├── notify.go │ └── pub_func.go ├── deploy ├── deploy.sh ├── hosts │ └── host_dev.txt ├── inithost │ ├── host.txt │ ├── init_centos_bak.yaml │ └── inithost.yml ├── playbook_dev │ ├── dev1.yml │ ├── dev1_vars │ ├── dev2.yml │ ├── dev2_vars │ ├── dev_local.yml │ └── dev_local_vars ├── roles │ ├── chatsvr │ │ └── tasks │ │ │ └── main.yml │ ├── commconf │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── server_conf.yaml │ ├── connsvr │ │ └── tasks │ │ │ └── main.yml │ ├── friendsvr │ │ └── tasks │ │ │ └── main.yml │ ├── gamedata │ │ └── tasks │ │ │ └── main.yml │ ├── infosvr │ │ └── tasks │ │ │ └── main.yml │ ├── mailsvr │ │ └── tasks │ │ │ └── main.yml │ ├── mainsvr │ │ └── tasks │ │ │ └── main.yml │ ├── mysqlsvr │ │ └── tasks │ │ │ └── main.yml │ ├── roomcentersvr │ │ └── tasks │ │ │ └── main.yml │ ├── texassvr │ │ └── tasks │ │ │ └── main.yml │ └── websvr │ │ └── tasks │ │ └── main.yml └── scripts │ └── server.sh ├── doc ├── G1服务器技术架构文档.docx ├── setup_linux.md └── setup_win.md ├── env ├── docker.yaml └── server_conf_ide.yaml ├── go.mod ├── go.sum ├── lib ├── api │ ├── cmd_handler │ │ ├── cmd_handler_i.go │ │ └── handler_mgr.go │ ├── datetime │ │ ├── const.go │ │ ├── datetime.go │ │ └── zonetime.go │ ├── error_capture │ │ ├── bugsnag.go │ │ ├── error_capture_test.go │ │ └── sentry.go │ ├── http_sign │ │ ├── Sign.go │ │ ├── Sign_Mgr.go │ │ ├── Transform.go │ │ └── config.go │ ├── logger │ │ ├── logger.go │ │ ├── plug │ │ │ ├── cmd_blacklist.go │ │ │ └── notify.go │ │ └── zap │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ └── logging.go │ ├── net_conf │ │ └── nacos_config.go │ ├── rest_api │ │ ├── config.go │ │ ├── rest_api.go │ │ └── rest_api_mgr.go │ ├── sharedstruct │ │ ├── cs_packet.go │ │ ├── packet_test.go │ │ └── ss_packet.go │ └── uerror │ │ └── uerror.go ├── contrib │ ├── config │ │ ├── apollo │ │ │ ├── README.md │ │ │ ├── apollo.go │ │ │ ├── apollo_test.go │ │ │ ├── json_parser.go │ │ │ └── watcher.go │ │ ├── consul │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── watcher.go │ │ ├── etcd │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── watcher.go │ │ └── kubernetes │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── watcher.go │ │ │ └── watcher_test.go │ ├── protoc │ │ ├── protoc-30.1-linux-x86_64 │ │ │ ├── bin │ │ │ │ └── protoc │ │ │ ├── include │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── api.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── cpp_features.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── go_features.proto │ │ │ │ │ ├── java_features.proto │ │ │ │ │ ├── source_context.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ ├── type.proto │ │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ │ ├── protoc-30.1-osx-aarch_64 │ │ │ ├── bin │ │ │ │ └── protoc │ │ │ ├── include │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── api.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── cpp_features.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── go_features.proto │ │ │ │ │ ├── java_features.proto │ │ │ │ │ ├── source_context.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ ├── type.proto │ │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ │ └── protoc-30.1-win64 │ │ │ ├── include │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any.proto │ │ │ │ ├── api.proto │ │ │ │ ├── compiler │ │ │ │ └── plugin.proto │ │ │ │ ├── cpp_features.proto │ │ │ │ ├── descriptor.proto │ │ │ │ ├── duration.proto │ │ │ │ ├── empty.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── go_features.proto │ │ │ │ ├── java_features.proto │ │ │ │ ├── source_context.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.proto │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ └── registry │ │ ├── consul │ │ ├── client.go │ │ ├── registry.go │ │ ├── registry_test.go │ │ ├── service.go │ │ └── watcher.go │ │ ├── etcd │ │ ├── registry.go │ │ ├── registry_test.go │ │ ├── service.go │ │ └── watcher.go │ │ ├── kubernetes │ │ └── registry.go │ │ ├── nacos │ │ ├── README.md │ │ ├── registry.go │ │ ├── registry_test.go │ │ └── watcher.go │ │ ├── registry.go │ │ └── zookeeper │ │ ├── register.go │ │ ├── register_test.go │ │ ├── service.go │ │ └── watcher.go ├── db │ ├── mysql │ │ ├── mysql_facade.go │ │ └── mysql_mgr.go │ ├── redis │ │ ├── cap_test.go │ │ ├── config.go │ │ └── redis_mgr.go │ ├── ssdb │ │ ├── config.go │ │ ├── ssdb_engin.go │ │ ├── ssdb_mgr.go │ │ └── test.go │ └── xorm │ │ ├── config.go │ │ ├── orm_engin.go │ │ ├── orm_mgr.go │ │ ├── orm_session.go │ │ └── xorm_test.go ├── net │ ├── gnet_server │ │ ├── gnet_udp.go │ │ └── gnet_udp_test.go │ ├── kcp_server │ │ ├── kcp.go │ │ ├── kcp_i.go │ │ └── kcp_test.go │ ├── net_mgr │ │ ├── kcp_impl.go │ │ ├── net_factory.go │ │ ├── net_i.go │ │ ├── tcp_impl.go │ │ └── ws_impl.go │ ├── tcp_server │ │ ├── tcp_i.go │ │ ├── tcp_packet.go │ │ └── tcp_server.go │ └── ws_server │ │ ├── beego_ws.go │ │ ├── gin_ws.go │ │ ├── ws.go │ │ └── ws_i.go ├── service │ ├── algorithm │ │ └── lru_cache.go │ ├── application │ │ ├── app.go │ │ ├── sig.go │ │ └── sig_windows.go │ ├── async │ │ ├── async.go │ │ └── queue.go │ ├── bus │ │ ├── bus_config.go │ │ ├── bus_factory.go │ │ ├── bus_i.go │ │ ├── bus_impl_nsq.go │ │ ├── bus_impl_rmq.go │ │ ├── bus_ip.go │ │ ├── bus_test.go │ │ └── nsq │ │ │ ├── README.md │ │ │ ├── cap_test.go │ │ │ ├── consumer.go │ │ │ └── producer.go │ ├── cache │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── sharded.go │ │ └── sharded_test.go │ ├── config │ │ └── nacos_config.go │ ├── router │ │ └── router.go │ ├── sensitive_words │ │ ├── sensitive.go │ │ └── sensitive_test.go │ ├── svrinstmgr │ │ └── svr_inst_mgr.go │ └── transaction │ │ ├── transaction_factory.go │ │ ├── transaction_i.go │ │ ├── transaction_impl.go │ │ └── transaction_mgr_impl.go ├── util │ ├── convert │ │ └── common.go │ ├── crypto │ │ ├── aes │ │ │ ├── base.go │ │ │ ├── cbc.go │ │ │ ├── cfb.go │ │ │ └── ecb.go │ │ ├── base64.go │ │ ├── cap_test.go │ │ ├── md5.go │ │ └── xxtea │ │ │ └── xxtea.go │ ├── deps │ │ └── protoc │ │ │ ├── protoc-3.11.4-linux-x86_64 │ │ │ ├── bin │ │ │ │ ├── protoc │ │ │ │ └── protoc-gen-go │ │ │ ├── include │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── api.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── source_context.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ ├── type.proto │ │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ │ │ ├── protoc-3.11.4-osx-x86_64 │ │ │ ├── bin │ │ │ │ └── protoc │ │ │ ├── include │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── api.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── source_context.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ ├── type.proto │ │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ │ │ └── protoc-3.11.4-win64 │ │ │ ├── include │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any.proto │ │ │ │ ├── api.proto │ │ │ │ ├── compiler │ │ │ │ └── plugin.proto │ │ │ │ ├── descriptor.proto │ │ │ │ ├── duration.proto │ │ │ │ ├── empty.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── source_context.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.proto │ │ │ │ └── wrappers.proto │ │ │ └── readme.txt │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── json │ │ │ └── json.go │ │ ├── msgp │ │ │ └── msg_pack.go │ │ ├── proto │ │ │ └── proto.go │ │ ├── xml │ │ │ └── xml.go │ │ └── yaml │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── file │ │ └── file.go │ ├── generic │ │ └── types.go │ ├── idgen │ │ ├── idgen.go │ │ └── idgen_test.go │ ├── marshal │ │ ├── cap_test.go │ │ └── load.go │ ├── mutex │ │ ├── recursive.go │ │ └── try_lock.go │ ├── random │ │ ├── bytes.go │ │ ├── init.go │ │ ├── rand.go │ │ ├── rand_test.go │ │ └── string.go │ ├── safego │ │ ├── safe_goroutine.go │ │ ├── safe_test.go │ │ └── singleflight.go │ ├── slices │ │ └── slices.go │ ├── timer │ │ └── timewheel.go │ ├── tos │ │ ├── dir.go │ │ ├── port.go │ │ ├── port_test.go │ │ ├── proc.go │ │ └── sysinfo.go │ ├── version │ │ └── version.go │ ├── xlstrans │ │ ├── buid.bat │ │ ├── buid.sh │ │ ├── main.go │ │ ├── parse_struct.go │ │ ├── xls_to_const.go │ │ ├── xls_to_data.go │ │ ├── xls_to_go.go │ │ ├── xls_to_pb.go │ │ └── xls_to_system_unlock.go │ └── zip │ │ ├── cap_test.go │ │ ├── gzip.go │ │ └── zip.go └── web │ ├── http │ └── http_api.go │ ├── rest │ ├── Auth.go │ ├── Captcha.go │ ├── Controller.go │ ├── Crypto.go │ ├── Func.go │ ├── JsonTime.go │ ├── RegUtil.go │ ├── Result.go │ └── SessionUtil.go │ └── web_gin │ ├── config.go │ ├── handler_process.go │ └── http.go ├── main.sh ├── module ├── drop │ └── mymath.go └── misc │ ├── constant.go │ └── func.go ├── readme.md ├── src ├── connsvr │ ├── app.go │ ├── cmd_handler │ │ ├── register.go │ │ └── trans_broadcast.go │ ├── globals │ │ └── globals.go │ ├── login │ │ └── login.go │ ├── main.go │ └── pack_proc.go ├── infosvr │ ├── app.go │ ├── cmd_handler │ │ ├── register.go │ │ └── trans_info.go │ ├── globals │ │ └── globals.go │ ├── info │ │ └── info_mgr.go │ └── main.go ├── mainsvr │ ├── app.go │ ├── cmd_handler │ │ ├── c2s_main_desc.go │ │ ├── c2s_main_login.go │ │ ├── c2s_main_mall.go │ │ ├── c2s_main_teaxs_room.go │ │ ├── register.go │ │ ├── role_adapter.go │ │ └── s2s_main_gm.go │ ├── globals │ │ ├── globals.go │ │ └── rds │ │ │ └── redis.go │ ├── main.go │ ├── role │ │ ├── actvity_task.go │ │ ├── drop.go │ │ ├── game.go │ │ ├── guide.go │ │ ├── icon.go │ │ ├── item.go │ │ ├── mail.go │ │ ├── mall.go │ │ ├── open_function.go │ │ ├── reason.go │ │ ├── role.go │ │ └── role_mgr.go │ └── room │ │ ├── create.go │ │ └── join.go ├── mysqlsvr │ ├── app.go │ ├── cmd_handler │ │ ├── inner_udpate.go │ │ ├── query_room_info.go │ │ ├── register.go │ │ └── trans_mysql.go │ ├── globals │ │ └── globals.go │ ├── main.go │ └── manager │ │ └── table_mgr.go ├── roomcentersvr │ ├── app.go │ ├── cmd_handler │ │ ├── adapter.go │ │ ├── register.go │ │ └── s2s_texas_standard.go │ ├── globals │ │ ├── globals.go │ │ └── idgen │ │ │ └── idgen.go │ ├── logic │ │ ├── quick_start.go │ │ ├── room_list.go │ │ └── sort.go │ ├── main.go │ ├── room_ai │ │ └── ai_creat.go │ └── room_mgr │ │ ├── base.go │ │ ├── data_proc.go │ │ └── texas_room │ │ ├── base.go │ │ ├── data_proc.go │ │ └── texas │ │ └── base.go └── web_svr │ ├── app.go │ ├── cmd_handler │ ├── dispach │ │ └── dispatch.go │ ├── register.go │ └── trans_msg.go │ ├── common │ ├── define.go │ └── stu_protocol.go │ ├── controller │ ├── router.go │ └── web_api.go │ ├── globals │ └── globals.go │ ├── main.go │ └── web_service │ └── msg_check.go └── tools ├── cfgtool ├── domain │ └── define.go ├── internal │ ├── base │ │ ├── func.go │ │ ├── typespec.go │ │ └── util.go │ ├── manager │ │ ├── convert_mgr.go │ │ ├── proto_mgr.go │ │ ├── table_mgr.go │ │ └── type_mgr.go │ ├── parser │ │ ├── parser.go │ │ └── reference.go │ └── templ │ │ ├── code_tpl.go │ │ ├── index_tpl.go │ │ └── proto_tpl.go ├── main.go ├── service │ ├── code_gen.go │ ├── data_gen.go │ ├── index_gen.go │ └── proto_gen.go └── test │ └── tool_test.go ├── go-manager.sh └── tester ├── conn_test.go ├── login_test.go ├── rummy_test.go ├── sync_data_test.go ├── t_test.go └── tester_util ├── role.go ├── room.go ├── session.go ├── tester_util.go └── ws_util.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *.exe 3 | doc/~$服务器技术架构文档.docx 4 | build/* 5 | /logs 6 | /deploy/hosts/* 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/LICENSE -------------------------------------------------------------------------------- /common/conf/sensitive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/conf/sensitive.txt -------------------------------------------------------------------------------- /common/define/const.go: -------------------------------------------------------------------------------- 1 | package define 2 | 3 | const ( 4 | RoomIdLen = 6 // 房间ID长度 5 | ) 6 | -------------------------------------------------------------------------------- /common/gamedata/data/DropItemConfing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/DropItemConfing.conf -------------------------------------------------------------------------------- /common/gamedata/data/GlobalConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/GlobalConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/ItemConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/ItemConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/MachineConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/MachineConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/MallConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/MallConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/RechargeConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/RechargeConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/TaskConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/TaskConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/TexasConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/TexasConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/TexasTestConfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/TexasTestConfig.conf -------------------------------------------------------------------------------- /common/gamedata/data/gamedata.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/data/gamedata.tar -------------------------------------------------------------------------------- /common/gamedata/gamedata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/gamedata.go -------------------------------------------------------------------------------- /common/gamedata/gamedata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/gamedata_test.go -------------------------------------------------------------------------------- /common/gamedata/repository/drop_item_confing/DropItemConfingData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/drop_item_confing/DropItemConfingData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/global_config/GlobalData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/global_config/GlobalData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/item_config/ItemData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/item_config/ItemData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/machine_config/MachineData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/machine_config/MachineData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/mall_config/MallData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/mall_config/MallData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/recharge_config/RechargeData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/recharge_config/RechargeData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/task_config/TaskData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/task_config/TaskData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/texas_config/TexasData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/texas_config/TexasData.gen.go -------------------------------------------------------------------------------- /common/gamedata/repository/texas_test_config/TexasTestData.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gamedata/repository/texas_test_config/TexasTestData.gen.go -------------------------------------------------------------------------------- /common/gconf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gconf/config.go -------------------------------------------------------------------------------- /common/gconf/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gconf/config_test.go -------------------------------------------------------------------------------- /common/gconf/server_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gconf/server_conf.yaml -------------------------------------------------------------------------------- /common/gconf/server_conf_ide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gconf/server_conf_ide.yaml -------------------------------------------------------------------------------- /common/gfunc/game_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gfunc/game_func.go -------------------------------------------------------------------------------- /common/gfunc/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gfunc/notify.go -------------------------------------------------------------------------------- /common/gfunc/pub_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/common/gfunc/pub_func.go -------------------------------------------------------------------------------- /deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/deploy.sh -------------------------------------------------------------------------------- /deploy/hosts/host_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/hosts/host_dev.txt -------------------------------------------------------------------------------- /deploy/inithost/host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/inithost/host.txt -------------------------------------------------------------------------------- /deploy/inithost/init_centos_bak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/inithost/init_centos_bak.yaml -------------------------------------------------------------------------------- /deploy/inithost/inithost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/inithost/inithost.yml -------------------------------------------------------------------------------- /deploy/playbook_dev/dev1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev1.yml -------------------------------------------------------------------------------- /deploy/playbook_dev/dev1_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev1_vars -------------------------------------------------------------------------------- /deploy/playbook_dev/dev2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev2.yml -------------------------------------------------------------------------------- /deploy/playbook_dev/dev2_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev2_vars -------------------------------------------------------------------------------- /deploy/playbook_dev/dev_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev_local.yml -------------------------------------------------------------------------------- /deploy/playbook_dev/dev_local_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/playbook_dev/dev_local_vars -------------------------------------------------------------------------------- /deploy/roles/chatsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/chatsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/commconf/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/commconf/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/commconf/templates/server_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/commconf/templates/server_conf.yaml -------------------------------------------------------------------------------- /deploy/roles/connsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/connsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/friendsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/friendsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/gamedata/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/gamedata/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/infosvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/infosvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/mailsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/mailsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/mainsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/mainsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/mysqlsvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/mysqlsvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/roomcentersvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/roomcentersvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/texassvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/texassvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/websvr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/roles/websvr/tasks/main.yml -------------------------------------------------------------------------------- /deploy/scripts/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/deploy/scripts/server.sh -------------------------------------------------------------------------------- /doc/G1服务器技术架构文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/doc/G1服务器技术架构文档.docx -------------------------------------------------------------------------------- /doc/setup_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/doc/setup_linux.md -------------------------------------------------------------------------------- /doc/setup_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/doc/setup_win.md -------------------------------------------------------------------------------- /env/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/env/docker.yaml -------------------------------------------------------------------------------- /env/server_conf_ide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/env/server_conf_ide.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/go.sum -------------------------------------------------------------------------------- /lib/api/cmd_handler/cmd_handler_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/cmd_handler/cmd_handler_i.go -------------------------------------------------------------------------------- /lib/api/cmd_handler/handler_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/cmd_handler/handler_mgr.go -------------------------------------------------------------------------------- /lib/api/datetime/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/datetime/const.go -------------------------------------------------------------------------------- /lib/api/datetime/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/datetime/datetime.go -------------------------------------------------------------------------------- /lib/api/datetime/zonetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/datetime/zonetime.go -------------------------------------------------------------------------------- /lib/api/error_capture/bugsnag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/error_capture/bugsnag.go -------------------------------------------------------------------------------- /lib/api/error_capture/error_capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/error_capture/error_capture_test.go -------------------------------------------------------------------------------- /lib/api/error_capture/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/error_capture/sentry.go -------------------------------------------------------------------------------- /lib/api/http_sign/Sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/http_sign/Sign.go -------------------------------------------------------------------------------- /lib/api/http_sign/Sign_Mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/http_sign/Sign_Mgr.go -------------------------------------------------------------------------------- /lib/api/http_sign/Transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/http_sign/Transform.go -------------------------------------------------------------------------------- /lib/api/http_sign/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/http_sign/config.go -------------------------------------------------------------------------------- /lib/api/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/logger.go -------------------------------------------------------------------------------- /lib/api/logger/plug/cmd_blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/plug/cmd_blacklist.go -------------------------------------------------------------------------------- /lib/api/logger/plug/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/plug/notify.go -------------------------------------------------------------------------------- /lib/api/logger/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/zap/logger.go -------------------------------------------------------------------------------- /lib/api/logger/zap/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/zap/logger_test.go -------------------------------------------------------------------------------- /lib/api/logger/zap/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/logger/zap/logging.go -------------------------------------------------------------------------------- /lib/api/net_conf/nacos_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/net_conf/nacos_config.go -------------------------------------------------------------------------------- /lib/api/rest_api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/rest_api/config.go -------------------------------------------------------------------------------- /lib/api/rest_api/rest_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/rest_api/rest_api.go -------------------------------------------------------------------------------- /lib/api/rest_api/rest_api_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/rest_api/rest_api_mgr.go -------------------------------------------------------------------------------- /lib/api/sharedstruct/cs_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/sharedstruct/cs_packet.go -------------------------------------------------------------------------------- /lib/api/sharedstruct/packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/sharedstruct/packet_test.go -------------------------------------------------------------------------------- /lib/api/sharedstruct/ss_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/sharedstruct/ss_packet.go -------------------------------------------------------------------------------- /lib/api/uerror/uerror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/api/uerror/uerror.go -------------------------------------------------------------------------------- /lib/contrib/config/apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/apollo/README.md -------------------------------------------------------------------------------- /lib/contrib/config/apollo/apollo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/apollo/apollo.go -------------------------------------------------------------------------------- /lib/contrib/config/apollo/apollo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/apollo/apollo_test.go -------------------------------------------------------------------------------- /lib/contrib/config/apollo/json_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/apollo/json_parser.go -------------------------------------------------------------------------------- /lib/contrib/config/apollo/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/apollo/watcher.go -------------------------------------------------------------------------------- /lib/contrib/config/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/consul/README.md -------------------------------------------------------------------------------- /lib/contrib/config/consul/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/consul/config.go -------------------------------------------------------------------------------- /lib/contrib/config/consul/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/consul/config_test.go -------------------------------------------------------------------------------- /lib/contrib/config/consul/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/consul/watcher.go -------------------------------------------------------------------------------- /lib/contrib/config/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/etcd/README.md -------------------------------------------------------------------------------- /lib/contrib/config/etcd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/etcd/config.go -------------------------------------------------------------------------------- /lib/contrib/config/etcd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/etcd/config_test.go -------------------------------------------------------------------------------- /lib/contrib/config/etcd/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/etcd/watcher.go -------------------------------------------------------------------------------- /lib/contrib/config/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/kubernetes/README.md -------------------------------------------------------------------------------- /lib/contrib/config/kubernetes/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/kubernetes/config.go -------------------------------------------------------------------------------- /lib/contrib/config/kubernetes/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/kubernetes/config_test.go -------------------------------------------------------------------------------- /lib/contrib/config/kubernetes/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/kubernetes/watcher.go -------------------------------------------------------------------------------- /lib/contrib/config/kubernetes/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/config/kubernetes/watcher_test.go -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/bin/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/bin/protoc -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/cpp_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/cpp_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/go_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/go_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/java_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/java_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-linux-x86_64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-linux-x86_64/readme.txt -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/bin/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/bin/protoc -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/cpp_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/cpp_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/go_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/go_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/java_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/java_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-osx-aarch_64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-osx-aarch_64/readme.txt -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/cpp_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/cpp_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/go_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/go_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/java_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/java_features.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/contrib/protoc/protoc-30.1-win64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/protoc/protoc-30.1-win64/readme.txt -------------------------------------------------------------------------------- /lib/contrib/registry/consul/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/consul/client.go -------------------------------------------------------------------------------- /lib/contrib/registry/consul/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/consul/registry.go -------------------------------------------------------------------------------- /lib/contrib/registry/consul/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/consul/registry_test.go -------------------------------------------------------------------------------- /lib/contrib/registry/consul/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/consul/service.go -------------------------------------------------------------------------------- /lib/contrib/registry/consul/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/consul/watcher.go -------------------------------------------------------------------------------- /lib/contrib/registry/etcd/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/etcd/registry.go -------------------------------------------------------------------------------- /lib/contrib/registry/etcd/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/etcd/registry_test.go -------------------------------------------------------------------------------- /lib/contrib/registry/etcd/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/etcd/service.go -------------------------------------------------------------------------------- /lib/contrib/registry/etcd/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/etcd/watcher.go -------------------------------------------------------------------------------- /lib/contrib/registry/kubernetes/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/kubernetes/registry.go -------------------------------------------------------------------------------- /lib/contrib/registry/nacos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/nacos/README.md -------------------------------------------------------------------------------- /lib/contrib/registry/nacos/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/nacos/registry.go -------------------------------------------------------------------------------- /lib/contrib/registry/nacos/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/nacos/registry_test.go -------------------------------------------------------------------------------- /lib/contrib/registry/nacos/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/nacos/watcher.go -------------------------------------------------------------------------------- /lib/contrib/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/registry.go -------------------------------------------------------------------------------- /lib/contrib/registry/zookeeper/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/zookeeper/register.go -------------------------------------------------------------------------------- /lib/contrib/registry/zookeeper/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/zookeeper/register_test.go -------------------------------------------------------------------------------- /lib/contrib/registry/zookeeper/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/zookeeper/service.go -------------------------------------------------------------------------------- /lib/contrib/registry/zookeeper/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/contrib/registry/zookeeper/watcher.go -------------------------------------------------------------------------------- /lib/db/mysql/mysql_facade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/mysql/mysql_facade.go -------------------------------------------------------------------------------- /lib/db/mysql/mysql_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/mysql/mysql_mgr.go -------------------------------------------------------------------------------- /lib/db/redis/cap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/redis/cap_test.go -------------------------------------------------------------------------------- /lib/db/redis/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/redis/config.go -------------------------------------------------------------------------------- /lib/db/redis/redis_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/redis/redis_mgr.go -------------------------------------------------------------------------------- /lib/db/ssdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/ssdb/config.go -------------------------------------------------------------------------------- /lib/db/ssdb/ssdb_engin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/ssdb/ssdb_engin.go -------------------------------------------------------------------------------- /lib/db/ssdb/ssdb_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/ssdb/ssdb_mgr.go -------------------------------------------------------------------------------- /lib/db/ssdb/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/ssdb/test.go -------------------------------------------------------------------------------- /lib/db/xorm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/xorm/config.go -------------------------------------------------------------------------------- /lib/db/xorm/orm_engin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/xorm/orm_engin.go -------------------------------------------------------------------------------- /lib/db/xorm/orm_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/xorm/orm_mgr.go -------------------------------------------------------------------------------- /lib/db/xorm/orm_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/xorm/orm_session.go -------------------------------------------------------------------------------- /lib/db/xorm/xorm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/db/xorm/xorm_test.go -------------------------------------------------------------------------------- /lib/net/gnet_server/gnet_udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/gnet_server/gnet_udp.go -------------------------------------------------------------------------------- /lib/net/gnet_server/gnet_udp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/gnet_server/gnet_udp_test.go -------------------------------------------------------------------------------- /lib/net/kcp_server/kcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/kcp_server/kcp.go -------------------------------------------------------------------------------- /lib/net/kcp_server/kcp_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/kcp_server/kcp_i.go -------------------------------------------------------------------------------- /lib/net/kcp_server/kcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/kcp_server/kcp_test.go -------------------------------------------------------------------------------- /lib/net/net_mgr/kcp_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/net_mgr/kcp_impl.go -------------------------------------------------------------------------------- /lib/net/net_mgr/net_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/net_mgr/net_factory.go -------------------------------------------------------------------------------- /lib/net/net_mgr/net_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/net_mgr/net_i.go -------------------------------------------------------------------------------- /lib/net/net_mgr/tcp_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/net_mgr/tcp_impl.go -------------------------------------------------------------------------------- /lib/net/net_mgr/ws_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/net_mgr/ws_impl.go -------------------------------------------------------------------------------- /lib/net/tcp_server/tcp_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/tcp_server/tcp_i.go -------------------------------------------------------------------------------- /lib/net/tcp_server/tcp_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/tcp_server/tcp_packet.go -------------------------------------------------------------------------------- /lib/net/tcp_server/tcp_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/tcp_server/tcp_server.go -------------------------------------------------------------------------------- /lib/net/ws_server/beego_ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/ws_server/beego_ws.go -------------------------------------------------------------------------------- /lib/net/ws_server/gin_ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/ws_server/gin_ws.go -------------------------------------------------------------------------------- /lib/net/ws_server/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/ws_server/ws.go -------------------------------------------------------------------------------- /lib/net/ws_server/ws_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/net/ws_server/ws_i.go -------------------------------------------------------------------------------- /lib/service/algorithm/lru_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/algorithm/lru_cache.go -------------------------------------------------------------------------------- /lib/service/application/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/application/app.go -------------------------------------------------------------------------------- /lib/service/application/sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/application/sig.go -------------------------------------------------------------------------------- /lib/service/application/sig_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/application/sig_windows.go -------------------------------------------------------------------------------- /lib/service/async/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/async/async.go -------------------------------------------------------------------------------- /lib/service/async/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/async/queue.go -------------------------------------------------------------------------------- /lib/service/bus/bus_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_config.go -------------------------------------------------------------------------------- /lib/service/bus/bus_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_factory.go -------------------------------------------------------------------------------- /lib/service/bus/bus_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_i.go -------------------------------------------------------------------------------- /lib/service/bus/bus_impl_nsq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_impl_nsq.go -------------------------------------------------------------------------------- /lib/service/bus/bus_impl_rmq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_impl_rmq.go -------------------------------------------------------------------------------- /lib/service/bus/bus_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_ip.go -------------------------------------------------------------------------------- /lib/service/bus/bus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/bus_test.go -------------------------------------------------------------------------------- /lib/service/bus/nsq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/nsq/README.md -------------------------------------------------------------------------------- /lib/service/bus/nsq/cap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/nsq/cap_test.go -------------------------------------------------------------------------------- /lib/service/bus/nsq/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/nsq/consumer.go -------------------------------------------------------------------------------- /lib/service/bus/nsq/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/bus/nsq/producer.go -------------------------------------------------------------------------------- /lib/service/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/cache/cache.go -------------------------------------------------------------------------------- /lib/service/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/cache/cache_test.go -------------------------------------------------------------------------------- /lib/service/cache/sharded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/cache/sharded.go -------------------------------------------------------------------------------- /lib/service/cache/sharded_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/cache/sharded_test.go -------------------------------------------------------------------------------- /lib/service/config/nacos_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/config/nacos_config.go -------------------------------------------------------------------------------- /lib/service/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/router/router.go -------------------------------------------------------------------------------- /lib/service/sensitive_words/sensitive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/sensitive_words/sensitive.go -------------------------------------------------------------------------------- /lib/service/sensitive_words/sensitive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/sensitive_words/sensitive_test.go -------------------------------------------------------------------------------- /lib/service/svrinstmgr/svr_inst_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/svrinstmgr/svr_inst_mgr.go -------------------------------------------------------------------------------- /lib/service/transaction/transaction_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/transaction/transaction_factory.go -------------------------------------------------------------------------------- /lib/service/transaction/transaction_i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/transaction/transaction_i.go -------------------------------------------------------------------------------- /lib/service/transaction/transaction_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/transaction/transaction_impl.go -------------------------------------------------------------------------------- /lib/service/transaction/transaction_mgr_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/service/transaction/transaction_mgr_impl.go -------------------------------------------------------------------------------- /lib/util/convert/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/convert/common.go -------------------------------------------------------------------------------- /lib/util/crypto/aes/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/aes/base.go -------------------------------------------------------------------------------- /lib/util/crypto/aes/cbc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/aes/cbc.go -------------------------------------------------------------------------------- /lib/util/crypto/aes/cfb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/aes/cfb.go -------------------------------------------------------------------------------- /lib/util/crypto/aes/ecb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/aes/ecb.go -------------------------------------------------------------------------------- /lib/util/crypto/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/base64.go -------------------------------------------------------------------------------- /lib/util/crypto/cap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/cap_test.go -------------------------------------------------------------------------------- /lib/util/crypto/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/md5.go -------------------------------------------------------------------------------- /lib/util/crypto/xxtea/xxtea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/crypto/xxtea/xxtea.go -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/bin/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/bin/protoc -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/bin/protoc-gen-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/bin/protoc-gen-go -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-linux-x86_64/readme.txt -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/bin/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/bin/protoc -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-osx-x86_64/readme.txt -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /lib/util/deps/protoc/protoc-3.11.4-win64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/deps/protoc/protoc-3.11.4-win64/readme.txt -------------------------------------------------------------------------------- /lib/util/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/encoding.go -------------------------------------------------------------------------------- /lib/util/encoding/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/encoding_test.go -------------------------------------------------------------------------------- /lib/util/encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/json/json.go -------------------------------------------------------------------------------- /lib/util/encoding/msgp/msg_pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/msgp/msg_pack.go -------------------------------------------------------------------------------- /lib/util/encoding/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/proto/proto.go -------------------------------------------------------------------------------- /lib/util/encoding/xml/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/xml/xml.go -------------------------------------------------------------------------------- /lib/util/encoding/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/yaml/yaml.go -------------------------------------------------------------------------------- /lib/util/encoding/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/encoding/yaml/yaml_test.go -------------------------------------------------------------------------------- /lib/util/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/file/file.go -------------------------------------------------------------------------------- /lib/util/generic/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/generic/types.go -------------------------------------------------------------------------------- /lib/util/idgen/idgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/idgen/idgen.go -------------------------------------------------------------------------------- /lib/util/idgen/idgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/idgen/idgen_test.go -------------------------------------------------------------------------------- /lib/util/marshal/cap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/marshal/cap_test.go -------------------------------------------------------------------------------- /lib/util/marshal/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/marshal/load.go -------------------------------------------------------------------------------- /lib/util/mutex/recursive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/mutex/recursive.go -------------------------------------------------------------------------------- /lib/util/mutex/try_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/mutex/try_lock.go -------------------------------------------------------------------------------- /lib/util/random/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/random/bytes.go -------------------------------------------------------------------------------- /lib/util/random/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/random/init.go -------------------------------------------------------------------------------- /lib/util/random/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/random/rand.go -------------------------------------------------------------------------------- /lib/util/random/rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/random/rand_test.go -------------------------------------------------------------------------------- /lib/util/random/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/random/string.go -------------------------------------------------------------------------------- /lib/util/safego/safe_goroutine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/safego/safe_goroutine.go -------------------------------------------------------------------------------- /lib/util/safego/safe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/safego/safe_test.go -------------------------------------------------------------------------------- /lib/util/safego/singleflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/safego/singleflight.go -------------------------------------------------------------------------------- /lib/util/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/slices/slices.go -------------------------------------------------------------------------------- /lib/util/timer/timewheel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/timer/timewheel.go -------------------------------------------------------------------------------- /lib/util/tos/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/tos/dir.go -------------------------------------------------------------------------------- /lib/util/tos/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/tos/port.go -------------------------------------------------------------------------------- /lib/util/tos/port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/tos/port_test.go -------------------------------------------------------------------------------- /lib/util/tos/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/tos/proc.go -------------------------------------------------------------------------------- /lib/util/tos/sysinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/tos/sysinfo.go -------------------------------------------------------------------------------- /lib/util/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/version/version.go -------------------------------------------------------------------------------- /lib/util/xlstrans/buid.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/buid.bat -------------------------------------------------------------------------------- /lib/util/xlstrans/buid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/buid.sh -------------------------------------------------------------------------------- /lib/util/xlstrans/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/main.go -------------------------------------------------------------------------------- /lib/util/xlstrans/parse_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/parse_struct.go -------------------------------------------------------------------------------- /lib/util/xlstrans/xls_to_const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/xls_to_const.go -------------------------------------------------------------------------------- /lib/util/xlstrans/xls_to_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/xls_to_data.go -------------------------------------------------------------------------------- /lib/util/xlstrans/xls_to_go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/xls_to_go.go -------------------------------------------------------------------------------- /lib/util/xlstrans/xls_to_pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/xls_to_pb.go -------------------------------------------------------------------------------- /lib/util/xlstrans/xls_to_system_unlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/xlstrans/xls_to_system_unlock.go -------------------------------------------------------------------------------- /lib/util/zip/cap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/zip/cap_test.go -------------------------------------------------------------------------------- /lib/util/zip/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/zip/gzip.go -------------------------------------------------------------------------------- /lib/util/zip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/util/zip/zip.go -------------------------------------------------------------------------------- /lib/web/http/http_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/http/http_api.go -------------------------------------------------------------------------------- /lib/web/rest/Auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Auth.go -------------------------------------------------------------------------------- /lib/web/rest/Captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Captcha.go -------------------------------------------------------------------------------- /lib/web/rest/Controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Controller.go -------------------------------------------------------------------------------- /lib/web/rest/Crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Crypto.go -------------------------------------------------------------------------------- /lib/web/rest/Func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Func.go -------------------------------------------------------------------------------- /lib/web/rest/JsonTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/JsonTime.go -------------------------------------------------------------------------------- /lib/web/rest/RegUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/RegUtil.go -------------------------------------------------------------------------------- /lib/web/rest/Result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/Result.go -------------------------------------------------------------------------------- /lib/web/rest/SessionUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/rest/SessionUtil.go -------------------------------------------------------------------------------- /lib/web/web_gin/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/web_gin/config.go -------------------------------------------------------------------------------- /lib/web/web_gin/handler_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/web_gin/handler_process.go -------------------------------------------------------------------------------- /lib/web/web_gin/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/lib/web/web_gin/http.go -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/main.sh -------------------------------------------------------------------------------- /module/drop/mymath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/module/drop/mymath.go -------------------------------------------------------------------------------- /module/misc/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/module/misc/constant.go -------------------------------------------------------------------------------- /module/misc/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/module/misc/func.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/readme.md -------------------------------------------------------------------------------- /src/connsvr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/app.go -------------------------------------------------------------------------------- /src/connsvr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/connsvr/cmd_handler/trans_broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/cmd_handler/trans_broadcast.go -------------------------------------------------------------------------------- /src/connsvr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/globals/globals.go -------------------------------------------------------------------------------- /src/connsvr/login/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/login/login.go -------------------------------------------------------------------------------- /src/connsvr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/main.go -------------------------------------------------------------------------------- /src/connsvr/pack_proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/connsvr/pack_proc.go -------------------------------------------------------------------------------- /src/infosvr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/app.go -------------------------------------------------------------------------------- /src/infosvr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/infosvr/cmd_handler/trans_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/cmd_handler/trans_info.go -------------------------------------------------------------------------------- /src/infosvr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/globals/globals.go -------------------------------------------------------------------------------- /src/infosvr/info/info_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/info/info_mgr.go -------------------------------------------------------------------------------- /src/infosvr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/infosvr/main.go -------------------------------------------------------------------------------- /src/mainsvr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/app.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/c2s_main_desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/c2s_main_desc.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/c2s_main_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/c2s_main_login.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/c2s_main_mall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/c2s_main_mall.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/c2s_main_teaxs_room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/c2s_main_teaxs_room.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/role_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/role_adapter.go -------------------------------------------------------------------------------- /src/mainsvr/cmd_handler/s2s_main_gm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/cmd_handler/s2s_main_gm.go -------------------------------------------------------------------------------- /src/mainsvr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/globals/globals.go -------------------------------------------------------------------------------- /src/mainsvr/globals/rds/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/globals/rds/redis.go -------------------------------------------------------------------------------- /src/mainsvr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/main.go -------------------------------------------------------------------------------- /src/mainsvr/role/actvity_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/actvity_task.go -------------------------------------------------------------------------------- /src/mainsvr/role/drop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/drop.go -------------------------------------------------------------------------------- /src/mainsvr/role/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/game.go -------------------------------------------------------------------------------- /src/mainsvr/role/guide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/guide.go -------------------------------------------------------------------------------- /src/mainsvr/role/icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/icon.go -------------------------------------------------------------------------------- /src/mainsvr/role/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/item.go -------------------------------------------------------------------------------- /src/mainsvr/role/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/mail.go -------------------------------------------------------------------------------- /src/mainsvr/role/mall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/mall.go -------------------------------------------------------------------------------- /src/mainsvr/role/open_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/open_function.go -------------------------------------------------------------------------------- /src/mainsvr/role/reason.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/reason.go -------------------------------------------------------------------------------- /src/mainsvr/role/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/role.go -------------------------------------------------------------------------------- /src/mainsvr/role/role_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/role/role_mgr.go -------------------------------------------------------------------------------- /src/mainsvr/room/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/room/create.go -------------------------------------------------------------------------------- /src/mainsvr/room/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mainsvr/room/join.go -------------------------------------------------------------------------------- /src/mysqlsvr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/app.go -------------------------------------------------------------------------------- /src/mysqlsvr/cmd_handler/inner_udpate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/cmd_handler/inner_udpate.go -------------------------------------------------------------------------------- /src/mysqlsvr/cmd_handler/query_room_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/cmd_handler/query_room_info.go -------------------------------------------------------------------------------- /src/mysqlsvr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/mysqlsvr/cmd_handler/trans_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/cmd_handler/trans_mysql.go -------------------------------------------------------------------------------- /src/mysqlsvr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/globals/globals.go -------------------------------------------------------------------------------- /src/mysqlsvr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/main.go -------------------------------------------------------------------------------- /src/mysqlsvr/manager/table_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/mysqlsvr/manager/table_mgr.go -------------------------------------------------------------------------------- /src/roomcentersvr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/app.go -------------------------------------------------------------------------------- /src/roomcentersvr/cmd_handler/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/cmd_handler/adapter.go -------------------------------------------------------------------------------- /src/roomcentersvr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/roomcentersvr/cmd_handler/s2s_texas_standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/cmd_handler/s2s_texas_standard.go -------------------------------------------------------------------------------- /src/roomcentersvr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/globals/globals.go -------------------------------------------------------------------------------- /src/roomcentersvr/globals/idgen/idgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/globals/idgen/idgen.go -------------------------------------------------------------------------------- /src/roomcentersvr/logic/quick_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/logic/quick_start.go -------------------------------------------------------------------------------- /src/roomcentersvr/logic/room_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/logic/room_list.go -------------------------------------------------------------------------------- /src/roomcentersvr/logic/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/logic/sort.go -------------------------------------------------------------------------------- /src/roomcentersvr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/main.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_ai/ai_creat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_ai/ai_creat.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_mgr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_mgr/base.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_mgr/data_proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_mgr/data_proc.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_mgr/texas_room/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_mgr/texas_room/base.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_mgr/texas_room/data_proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_mgr/texas_room/data_proc.go -------------------------------------------------------------------------------- /src/roomcentersvr/room_mgr/texas_room/texas/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/roomcentersvr/room_mgr/texas_room/texas/base.go -------------------------------------------------------------------------------- /src/web_svr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/app.go -------------------------------------------------------------------------------- /src/web_svr/cmd_handler/dispach/dispatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/cmd_handler/dispach/dispatch.go -------------------------------------------------------------------------------- /src/web_svr/cmd_handler/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/cmd_handler/register.go -------------------------------------------------------------------------------- /src/web_svr/cmd_handler/trans_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/cmd_handler/trans_msg.go -------------------------------------------------------------------------------- /src/web_svr/common/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/common/define.go -------------------------------------------------------------------------------- /src/web_svr/common/stu_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/common/stu_protocol.go -------------------------------------------------------------------------------- /src/web_svr/controller/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/controller/router.go -------------------------------------------------------------------------------- /src/web_svr/controller/web_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/controller/web_api.go -------------------------------------------------------------------------------- /src/web_svr/globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/globals/globals.go -------------------------------------------------------------------------------- /src/web_svr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/main.go -------------------------------------------------------------------------------- /src/web_svr/web_service/msg_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/src/web_svr/web_service/msg_check.go -------------------------------------------------------------------------------- /tools/cfgtool/domain/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/domain/define.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/base/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/base/func.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/base/typespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/base/typespec.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/base/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/base/util.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/manager/convert_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/manager/convert_mgr.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/manager/proto_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/manager/proto_mgr.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/manager/table_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/manager/table_mgr.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/manager/type_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/manager/type_mgr.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/parser/parser.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/parser/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/parser/reference.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/templ/code_tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/templ/code_tpl.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/templ/index_tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/templ/index_tpl.go -------------------------------------------------------------------------------- /tools/cfgtool/internal/templ/proto_tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/internal/templ/proto_tpl.go -------------------------------------------------------------------------------- /tools/cfgtool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/main.go -------------------------------------------------------------------------------- /tools/cfgtool/service/code_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/service/code_gen.go -------------------------------------------------------------------------------- /tools/cfgtool/service/data_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/service/data_gen.go -------------------------------------------------------------------------------- /tools/cfgtool/service/index_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/service/index_gen.go -------------------------------------------------------------------------------- /tools/cfgtool/service/proto_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/service/proto_gen.go -------------------------------------------------------------------------------- /tools/cfgtool/test/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/cfgtool/test/tool_test.go -------------------------------------------------------------------------------- /tools/go-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/go-manager.sh -------------------------------------------------------------------------------- /tools/tester/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/conn_test.go -------------------------------------------------------------------------------- /tools/tester/login_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/login_test.go -------------------------------------------------------------------------------- /tools/tester/rummy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/rummy_test.go -------------------------------------------------------------------------------- /tools/tester/sync_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/sync_data_test.go -------------------------------------------------------------------------------- /tools/tester/t_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/t_test.go -------------------------------------------------------------------------------- /tools/tester/tester_util/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/tester_util/role.go -------------------------------------------------------------------------------- /tools/tester/tester_util/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/tester_util/room.go -------------------------------------------------------------------------------- /tools/tester/tester_util/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/tester_util/session.go -------------------------------------------------------------------------------- /tools/tester/tester_util/tester_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/tester_util/tester_util.go -------------------------------------------------------------------------------- /tools/tester/tester_util/ws_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iori372552686/GoOne/HEAD/tools/tester/tester_util/ws_util.go --------------------------------------------------------------------------------