├── .gitignore ├── Dockerfile ├── LICENSE ├── README-EN.md ├── README.md ├── api ├── autoCheckApi.go ├── clusterApi.go ├── dstConfigApi.go ├── dstMapApi.go ├── fileApi.go ├── gameBackupApi.go ├── gameConfigApi.go ├── gameConsoleApi.go ├── gameLevel2Api.go ├── initApi.go ├── installSteamcmdApi.go ├── kvApi.go ├── loginApi.go ├── modApi.go ├── playerApi.go ├── playerLogApi.go ├── preinstallApi.go ├── shareApi.go ├── statisticsApi.go ├── steamApi.go ├── testApi.go ├── thirdPartyApi.go ├── timedTaskApi.go ├── webLinkApi.go ├── webSocket.go └── webhookApi.go ├── bootstrap └── init.go ├── collect ├── collect.go └── collectMap.go ├── config.yml ├── config ├── config.go ├── database │ └── database.go └── global │ └── global.go ├── constant ├── consts │ └── consts.go └── screenKey │ └── dstKey.go ├── docker-entrypoint.sh ├── docker_build.sh ├── docker_dst_config ├── docs ├── image │ ├── alipay.jpg │ ├── mod.png │ ├── mod配置.png │ ├── tengxunad1.png │ ├── wechatpay.png │ ├── 房间.png │ ├── 日志.png │ ├── 模组.png │ ├── 登录.png │ ├── 统计.png │ ├── 莱卡云游戏面板.png │ ├── 配置.png │ ├── 面板.png │ ├── 饥荒开服面板交流issue群聊二维码.png │ └── 首页-dark.png ├── install.md ├── multiServer.md └── script │ ├── install_centos.sh │ └── install_ubuntu.sh ├── dst_config ├── go.mod ├── go.sum ├── main.go ├── middleware ├── SecurityInterceptor.go ├── authHandler.go └── errorHandle.go ├── model ├── LogRecord.go ├── announce.go ├── autoCheck.go ├── backup.go ├── backupSnapshot.go ├── cluster.go ├── connect.go ├── jobTask.go ├── kv.go ├── modInfo.go ├── modKv.go ├── model.go ├── playerLog.go ├── regenerate.go ├── spawnRole.go └── webLink.go ├── py-dst-cli ├── README.md ├── dst_version.py ├── dst_world_setting.json ├── main.py ├── parse_TooManyItemPlus_items.py ├── parse_mod.py ├── parse_world_setting.py ├── parse_world_webp.py ├── requirements.txt └── steamapikey.txt ├── router ├── autoCheck.go ├── backup.go ├── cluster.go ├── dstConfig.go ├── dstGenMap.go ├── entry.go ├── file.go ├── game.go ├── init.go ├── level2.go ├── login.go ├── mod.go ├── player.go ├── static.go ├── statistices.go ├── steam.go ├── thirdParty.go ├── timedTask.go ├── webLink.go ├── webhook.go └── ws.go ├── schedule ├── ImageSchedule.go ├── schedule.go └── strategy.go ├── script └── docker-build-mac │ ├── Dockerfile │ ├── docker-entrypoint.sh │ ├── docker_dst_config │ └── dst-mac-arm64-env-install.md ├── service ├── DstMapGenerator.go ├── announceService.go ├── autoCheck │ └── autoCheckManager.go ├── backupService.go ├── backupService2.go ├── baseService.go ├── clusterManger.go ├── gameArchiveServer.go ├── gameConfigService.go ├── gameConsoleService.go ├── gameLevel2Service.go ├── gameService.go ├── homeService.go ├── initEnvService.go ├── lobbyServer.go ├── logRecordService.go ├── loginService.go ├── mod │ ├── modService.go │ └── mod_download.go ├── playerService.go ├── windowGameCli.go ├── windowsGameConsoleService.go └── windowsGameService.go ├── static ├── Caves │ ├── leveldataoverride.lua │ ├── modoverrides.lua │ └── server.ini ├── Master │ ├── leveldataoverride.lua │ ├── modoverrides.lua │ └── server.ini ├── script │ ├── dst-go.sh │ ├── install.sh │ ├── install_steamcmd.sh │ └── install_steamcmd2.sh └── template │ ├── caves_server.ini │ ├── cluster.ini │ ├── cluster2.ini │ ├── master_server.ini │ ├── server.ini │ └── test.go ├── utils ├── clusterUtils │ └── clusterUtils.go ├── collectionUtils │ └── collectionUtils.go ├── dateUtils.go ├── dstConfigUtils │ └── dstConfig.go ├── dstUtils │ └── dstUtils.go ├── fileUtils │ └── fileUtls.go ├── levelConfigUtils │ └── levelConfigUtils.go ├── luaUtils │ └── luaUtils.go ├── pageUtils │ └── pageUtils.go ├── shellUtils │ └── shellUitls.go ├── systemUtils │ └── SystemUtils.go └── zip │ └── zip.go └── vo ├── BlacklistVO.go ├── DstPsVo.go ├── ProxyParam.go ├── adminListVO.go ├── backupVO.go ├── clusterVO.go ├── dashboardVo.go ├── gameArchiveGameVO.go ├── gameConfigVO.go ├── level └── level.go ├── page.go ├── playerVO.go ├── response.go ├── third ├── DstHomeDetailParam.go └── DstHomeServerParam.go ├── userVO.go ├── vo.go └── whitelistVO.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/README.md -------------------------------------------------------------------------------- /api/autoCheckApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/autoCheckApi.go -------------------------------------------------------------------------------- /api/clusterApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/clusterApi.go -------------------------------------------------------------------------------- /api/dstConfigApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/dstConfigApi.go -------------------------------------------------------------------------------- /api/dstMapApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/dstMapApi.go -------------------------------------------------------------------------------- /api/fileApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/fileApi.go -------------------------------------------------------------------------------- /api/gameBackupApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/gameBackupApi.go -------------------------------------------------------------------------------- /api/gameConfigApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/gameConfigApi.go -------------------------------------------------------------------------------- /api/gameConsoleApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/gameConsoleApi.go -------------------------------------------------------------------------------- /api/gameLevel2Api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/gameLevel2Api.go -------------------------------------------------------------------------------- /api/initApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/initApi.go -------------------------------------------------------------------------------- /api/installSteamcmdApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/installSteamcmdApi.go -------------------------------------------------------------------------------- /api/kvApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/kvApi.go -------------------------------------------------------------------------------- /api/loginApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/loginApi.go -------------------------------------------------------------------------------- /api/modApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/modApi.go -------------------------------------------------------------------------------- /api/playerApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/playerApi.go -------------------------------------------------------------------------------- /api/playerLogApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/playerLogApi.go -------------------------------------------------------------------------------- /api/preinstallApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/preinstallApi.go -------------------------------------------------------------------------------- /api/shareApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/shareApi.go -------------------------------------------------------------------------------- /api/statisticsApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/statisticsApi.go -------------------------------------------------------------------------------- /api/steamApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/steamApi.go -------------------------------------------------------------------------------- /api/testApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/testApi.go -------------------------------------------------------------------------------- /api/thirdPartyApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/thirdPartyApi.go -------------------------------------------------------------------------------- /api/timedTaskApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/timedTaskApi.go -------------------------------------------------------------------------------- /api/webLinkApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/webLinkApi.go -------------------------------------------------------------------------------- /api/webSocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/webSocket.go -------------------------------------------------------------------------------- /api/webhookApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/api/webhookApi.go -------------------------------------------------------------------------------- /bootstrap/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/bootstrap/init.go -------------------------------------------------------------------------------- /collect/collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/collect/collect.go -------------------------------------------------------------------------------- /collect/collectMap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/collect/collectMap.go -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/config.yml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/config/config.go -------------------------------------------------------------------------------- /config/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/config/database/database.go -------------------------------------------------------------------------------- /config/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/config/global/global.go -------------------------------------------------------------------------------- /constant/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/constant/consts/consts.go -------------------------------------------------------------------------------- /constant/screenKey/dstKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/constant/screenKey/dstKey.go -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docker_build.sh -------------------------------------------------------------------------------- /docker_dst_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docker_dst_config -------------------------------------------------------------------------------- /docs/image/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/alipay.jpg -------------------------------------------------------------------------------- /docs/image/mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/mod.png -------------------------------------------------------------------------------- /docs/image/mod配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/mod配置.png -------------------------------------------------------------------------------- /docs/image/tengxunad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/tengxunad1.png -------------------------------------------------------------------------------- /docs/image/wechatpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/wechatpay.png -------------------------------------------------------------------------------- /docs/image/房间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/房间.png -------------------------------------------------------------------------------- /docs/image/日志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/日志.png -------------------------------------------------------------------------------- /docs/image/模组.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/模组.png -------------------------------------------------------------------------------- /docs/image/登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/登录.png -------------------------------------------------------------------------------- /docs/image/统计.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/统计.png -------------------------------------------------------------------------------- /docs/image/莱卡云游戏面板.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/莱卡云游戏面板.png -------------------------------------------------------------------------------- /docs/image/配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/配置.png -------------------------------------------------------------------------------- /docs/image/面板.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/面板.png -------------------------------------------------------------------------------- /docs/image/饥荒开服面板交流issue群聊二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/饥荒开服面板交流issue群聊二维码.png -------------------------------------------------------------------------------- /docs/image/首页-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/image/首页-dark.png -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/multiServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/multiServer.md -------------------------------------------------------------------------------- /docs/script/install_centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/script/install_centos.sh -------------------------------------------------------------------------------- /docs/script/install_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/docs/script/install_ubuntu.sh -------------------------------------------------------------------------------- /dst_config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/main.go -------------------------------------------------------------------------------- /middleware/SecurityInterceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/middleware/SecurityInterceptor.go -------------------------------------------------------------------------------- /middleware/authHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/middleware/authHandler.go -------------------------------------------------------------------------------- /middleware/errorHandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/middleware/errorHandle.go -------------------------------------------------------------------------------- /model/LogRecord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/LogRecord.go -------------------------------------------------------------------------------- /model/announce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/announce.go -------------------------------------------------------------------------------- /model/autoCheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/autoCheck.go -------------------------------------------------------------------------------- /model/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/backup.go -------------------------------------------------------------------------------- /model/backupSnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/backupSnapshot.go -------------------------------------------------------------------------------- /model/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/cluster.go -------------------------------------------------------------------------------- /model/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/connect.go -------------------------------------------------------------------------------- /model/jobTask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/jobTask.go -------------------------------------------------------------------------------- /model/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/kv.go -------------------------------------------------------------------------------- /model/modInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/modInfo.go -------------------------------------------------------------------------------- /model/modKv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/modKv.go -------------------------------------------------------------------------------- /model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/model.go -------------------------------------------------------------------------------- /model/playerLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/playerLog.go -------------------------------------------------------------------------------- /model/regenerate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/regenerate.go -------------------------------------------------------------------------------- /model/spawnRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/spawnRole.go -------------------------------------------------------------------------------- /model/webLink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/model/webLink.go -------------------------------------------------------------------------------- /py-dst-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/README.md -------------------------------------------------------------------------------- /py-dst-cli/dst_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/dst_version.py -------------------------------------------------------------------------------- /py-dst-cli/dst_world_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/dst_world_setting.json -------------------------------------------------------------------------------- /py-dst-cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/main.py -------------------------------------------------------------------------------- /py-dst-cli/parse_TooManyItemPlus_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/parse_TooManyItemPlus_items.py -------------------------------------------------------------------------------- /py-dst-cli/parse_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/parse_mod.py -------------------------------------------------------------------------------- /py-dst-cli/parse_world_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/parse_world_setting.py -------------------------------------------------------------------------------- /py-dst-cli/parse_world_webp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/parse_world_webp.py -------------------------------------------------------------------------------- /py-dst-cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/py-dst-cli/requirements.txt -------------------------------------------------------------------------------- /py-dst-cli/steamapikey.txt: -------------------------------------------------------------------------------- 1 | 73DF9F781D195DFD3D19DED1CB72EEE6 -------------------------------------------------------------------------------- /router/autoCheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/autoCheck.go -------------------------------------------------------------------------------- /router/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/backup.go -------------------------------------------------------------------------------- /router/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/cluster.go -------------------------------------------------------------------------------- /router/dstConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/dstConfig.go -------------------------------------------------------------------------------- /router/dstGenMap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/dstGenMap.go -------------------------------------------------------------------------------- /router/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/entry.go -------------------------------------------------------------------------------- /router/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/file.go -------------------------------------------------------------------------------- /router/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/game.go -------------------------------------------------------------------------------- /router/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/init.go -------------------------------------------------------------------------------- /router/level2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/level2.go -------------------------------------------------------------------------------- /router/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/login.go -------------------------------------------------------------------------------- /router/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/mod.go -------------------------------------------------------------------------------- /router/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/player.go -------------------------------------------------------------------------------- /router/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/static.go -------------------------------------------------------------------------------- /router/statistices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/statistices.go -------------------------------------------------------------------------------- /router/steam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/steam.go -------------------------------------------------------------------------------- /router/thirdParty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/thirdParty.go -------------------------------------------------------------------------------- /router/timedTask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/timedTask.go -------------------------------------------------------------------------------- /router/webLink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/webLink.go -------------------------------------------------------------------------------- /router/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/webhook.go -------------------------------------------------------------------------------- /router/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/router/ws.go -------------------------------------------------------------------------------- /schedule/ImageSchedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/schedule/ImageSchedule.go -------------------------------------------------------------------------------- /schedule/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/schedule/schedule.go -------------------------------------------------------------------------------- /schedule/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/schedule/strategy.go -------------------------------------------------------------------------------- /script/docker-build-mac/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/script/docker-build-mac/Dockerfile -------------------------------------------------------------------------------- /script/docker-build-mac/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/script/docker-build-mac/docker-entrypoint.sh -------------------------------------------------------------------------------- /script/docker-build-mac/docker_dst_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/script/docker-build-mac/docker_dst_config -------------------------------------------------------------------------------- /script/docker-build-mac/dst-mac-arm64-env-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/script/docker-build-mac/dst-mac-arm64-env-install.md -------------------------------------------------------------------------------- /service/DstMapGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/DstMapGenerator.go -------------------------------------------------------------------------------- /service/announceService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/announceService.go -------------------------------------------------------------------------------- /service/autoCheck/autoCheckManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/autoCheck/autoCheckManager.go -------------------------------------------------------------------------------- /service/backupService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/backupService.go -------------------------------------------------------------------------------- /service/backupService2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/backupService2.go -------------------------------------------------------------------------------- /service/baseService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/baseService.go -------------------------------------------------------------------------------- /service/clusterManger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/clusterManger.go -------------------------------------------------------------------------------- /service/gameArchiveServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/gameArchiveServer.go -------------------------------------------------------------------------------- /service/gameConfigService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/gameConfigService.go -------------------------------------------------------------------------------- /service/gameConsoleService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/gameConsoleService.go -------------------------------------------------------------------------------- /service/gameLevel2Service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/gameLevel2Service.go -------------------------------------------------------------------------------- /service/gameService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/gameService.go -------------------------------------------------------------------------------- /service/homeService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/homeService.go -------------------------------------------------------------------------------- /service/initEnvService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/initEnvService.go -------------------------------------------------------------------------------- /service/lobbyServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/lobbyServer.go -------------------------------------------------------------------------------- /service/logRecordService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/logRecordService.go -------------------------------------------------------------------------------- /service/loginService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/loginService.go -------------------------------------------------------------------------------- /service/mod/modService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/mod/modService.go -------------------------------------------------------------------------------- /service/mod/mod_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/mod/mod_download.go -------------------------------------------------------------------------------- /service/playerService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/playerService.go -------------------------------------------------------------------------------- /service/windowGameCli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/windowGameCli.go -------------------------------------------------------------------------------- /service/windowsGameConsoleService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/windowsGameConsoleService.go -------------------------------------------------------------------------------- /service/windowsGameService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/service/windowsGameService.go -------------------------------------------------------------------------------- /static/Caves/leveldataoverride.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/Caves/leveldataoverride.lua -------------------------------------------------------------------------------- /static/Caves/modoverrides.lua: -------------------------------------------------------------------------------- 1 | return { } -------------------------------------------------------------------------------- /static/Caves/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/Caves/server.ini -------------------------------------------------------------------------------- /static/Master/leveldataoverride.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/Master/leveldataoverride.lua -------------------------------------------------------------------------------- /static/Master/modoverrides.lua: -------------------------------------------------------------------------------- 1 | return { } -------------------------------------------------------------------------------- /static/Master/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/Master/server.ini -------------------------------------------------------------------------------- /static/script/dst-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/script/dst-go.sh -------------------------------------------------------------------------------- /static/script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/script/install.sh -------------------------------------------------------------------------------- /static/script/install_steamcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/script/install_steamcmd.sh -------------------------------------------------------------------------------- /static/script/install_steamcmd2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/script/install_steamcmd2.sh -------------------------------------------------------------------------------- /static/template/caves_server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/caves_server.ini -------------------------------------------------------------------------------- /static/template/cluster.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/cluster.ini -------------------------------------------------------------------------------- /static/template/cluster2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/cluster2.ini -------------------------------------------------------------------------------- /static/template/master_server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/master_server.ini -------------------------------------------------------------------------------- /static/template/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/server.ini -------------------------------------------------------------------------------- /static/template/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/static/template/test.go -------------------------------------------------------------------------------- /utils/clusterUtils/clusterUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/clusterUtils/clusterUtils.go -------------------------------------------------------------------------------- /utils/collectionUtils/collectionUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/collectionUtils/collectionUtils.go -------------------------------------------------------------------------------- /utils/dateUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/dateUtils.go -------------------------------------------------------------------------------- /utils/dstConfigUtils/dstConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/dstConfigUtils/dstConfig.go -------------------------------------------------------------------------------- /utils/dstUtils/dstUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/dstUtils/dstUtils.go -------------------------------------------------------------------------------- /utils/fileUtils/fileUtls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/fileUtils/fileUtls.go -------------------------------------------------------------------------------- /utils/levelConfigUtils/levelConfigUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/levelConfigUtils/levelConfigUtils.go -------------------------------------------------------------------------------- /utils/luaUtils/luaUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/luaUtils/luaUtils.go -------------------------------------------------------------------------------- /utils/pageUtils/pageUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/pageUtils/pageUtils.go -------------------------------------------------------------------------------- /utils/shellUtils/shellUitls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/shellUtils/shellUitls.go -------------------------------------------------------------------------------- /utils/systemUtils/SystemUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/systemUtils/SystemUtils.go -------------------------------------------------------------------------------- /utils/zip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/utils/zip/zip.go -------------------------------------------------------------------------------- /vo/BlacklistVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/BlacklistVO.go -------------------------------------------------------------------------------- /vo/DstPsVo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/DstPsVo.go -------------------------------------------------------------------------------- /vo/ProxyParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/ProxyParam.go -------------------------------------------------------------------------------- /vo/adminListVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/adminListVO.go -------------------------------------------------------------------------------- /vo/backupVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/backupVO.go -------------------------------------------------------------------------------- /vo/clusterVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/clusterVO.go -------------------------------------------------------------------------------- /vo/dashboardVo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/dashboardVo.go -------------------------------------------------------------------------------- /vo/gameArchiveGameVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/gameArchiveGameVO.go -------------------------------------------------------------------------------- /vo/gameConfigVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/gameConfigVO.go -------------------------------------------------------------------------------- /vo/level/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/level/level.go -------------------------------------------------------------------------------- /vo/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/page.go -------------------------------------------------------------------------------- /vo/playerVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/playerVO.go -------------------------------------------------------------------------------- /vo/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/response.go -------------------------------------------------------------------------------- /vo/third/DstHomeDetailParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/third/DstHomeDetailParam.go -------------------------------------------------------------------------------- /vo/third/DstHomeServerParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/third/DstHomeServerParam.go -------------------------------------------------------------------------------- /vo/userVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/userVO.go -------------------------------------------------------------------------------- /vo/vo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/vo.go -------------------------------------------------------------------------------- /vo/whitelistVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot-hu23/dst-admin-go/HEAD/vo/whitelistVO.go --------------------------------------------------------------------------------