go,go-*,gofmt,goimports,golangci-lint: add Korean translation (#14190)

This commit is contained in:
코드싸이
2024-10-14 16:51:00 +09:00
committed by GitHub
parent 90ac2d50cd
commit 75d7e53411
21 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# go list
> 패키지 또는 모듈 나열.
> 더 많은 정보: <https://golang.org/cmd/go/#hdr-List_packages_or_modules>.
- 패키지 나열:
`go list ./...`
- 표준 패키지 나열:
`go list std`
- JSON 형식으로 패키지 나열:
`go list -json time net/http`
- 모듈 종속성과 이용 가능한 업데이트 나열:
`go list -m -u all`