docs: add Korean translations (#5579)

Co-authored-by: kevin <wanjunfeng@gmail.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Jeonghyeon Kim
2026-06-21 22:49:20 +09:00
committed by GitHub
parent d4882c1da0
commit 48ca7f03b5
51 changed files with 1982 additions and 91 deletions

View File

@@ -1,5 +1,7 @@
# Example 07: External Proto — Same `go_package`
English | [中文](README-cn.md) | [한국어](README-ko.md)
This example demonstrates importing proto files from an external directory where both files share the **same** `go_package`.
## Proto Definition
@@ -18,7 +20,8 @@ Source layout:
│ └── ext.proto # External proto (go_package = "example.com/demo/pb")
├── service.proto # Service definition (go_package = "example.com/demo/pb")
├── README.md
── README-cn.md
── README-cn.md
└── README-ko.md
```
- `ext.proto` lives in a separate directory (`ext_protos/`), but has the same `go_package` as `service.proto`.