From 2053a6613e9148894fe02b8abeaa954eb8dfd9ab Mon Sep 17 00:00:00 2001 From: Youngjin Jo Date: Wed, 6 Nov 2024 15:51:27 +0900 Subject: [PATCH] chore: convery comment to Eng. Signed-off-by: Youngjin Jo --- cmd/apiResources.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/apiResources.go b/cmd/apiResources.go index 0344c57..421b4ce 100644 --- a/cmd/apiResources.go +++ b/cmd/apiResources.go @@ -171,7 +171,7 @@ var apiResourcesCmd = &cobra.Command{ endpointsMap := viper.GetStringMapString("endpoints") - // 플래그로 전달된 엔드포인트들 처리 + // Process endpoints provided via flag if endpoints != "" { selectedEndpoints := strings.Split(endpoints, ",") for i := range selectedEndpoints { @@ -204,7 +204,7 @@ var apiResourcesCmd = &cobra.Command{ return } - // -e 플래그가 없을 때 기존의 모든 서비스에 대해 나열하는 기능 유지 + // If -e flag is not provided, list all services as before var wg sync.WaitGroup dataChan := make(chan [][]string, len(endpointsMap)) errorChan := make(chan error, len(endpointsMap))