From b8a9b7e66bd2f84d3d0c8b38254feca575fcfd4f Mon Sep 17 00:00:00 2001 From: Leufolium Date: Fri, 24 May 2024 04:09:24 +0800 Subject: [PATCH] by Robin at 20240524 --- api/consts/consts.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/consts/consts.go b/api/consts/consts.go index 89e65646..73dcf157 100644 --- a/api/consts/consts.go +++ b/api/consts/consts.go @@ -87,13 +87,15 @@ const ( const PackageRootPath = "/app/wishpal-ironfan" +const OfflinePackageRootPath = "/app/wishpal-ironfan-offline" + const MainConfigPath = PackageRootPath + "/etc/mix/mix-test.yaml" -const MainOfflineConfigPath = PackageRootPath + "/etc/mix/mix-test-offline.yaml" +const MainOfflineConfigPath = OfflinePackageRootPath + "/etc/mix/mix-test-offline.yaml" const ProductionConfigPath = PackageRootPath + "/etc/mix/mix-prod.yaml" -const ProductionOfflineConfigPath = PackageRootPath + "/etc/mix/mix-prod-offline.yaml" +const ProductionOfflineConfigPath = OfflinePackageRootPath + "/etc/mix/mix-prod-offline.yaml" const LocalConfigPath = "C:/Users/PC/Desktop/service/etc/mix/mix-local.yaml"