From 20109922aa7a0df5d99d99d12c8933b61d779fc3 Mon Sep 17 00:00:00 2001 From: hs son Date: Sun, 13 Nov 2022 21:39:15 +0900 Subject: [PATCH] Add korean translate in Installation section (#2213) --- .github/README_ko.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_ko.md b/.github/README_ko.md index 2f71cb550a..c2479baee1 100644 --- a/.github/README_ko.md +++ b/.github/README_ko.md @@ -113,7 +113,7 @@ func main() { Go가 설치되어 있는 것을 확인해 주세요 ([download](https://go.dev/dl/)). 버전 1.14 또는 그 이상이어야 합니다. -Initialize your project by creating a folder and then running `go mod init github.com/your/repo` ([learn more](https://go.dev/blog/using-go-modules)) inside the folder. Then install Fiber with the [`go get`](https://pkg.go.dev/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) command: +폴더를 생성하여 당신의 프로젝트를 초기화하고, 폴더 안에서 `go mod init github.com/your/repo` ([learn more](https://go.dev/blog/using-go-modules)) 를 실행하세요. 그리고 [`go get`](https://pkg.go.dev/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) 명령어로 Fiber를 설치하세요: ```bash go get -u github.com/gofiber/fiber/v2