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 04: Transitive Imports
English | [中文](README-cn.md) | [한국어](README-ko.md)
This example demonstrates transitive proto imports, where A imports B and B imports C.
## Proto Definition
@@ -65,7 +67,7 @@ output/
## Key Points
- Three proto files (`base.proto``middleware.proto``main.proto`) form a transitive import chain.
- Three proto files (`main.proto``middleware.proto``base.proto`) form a transitive import chain.
- goctl recursively resolves all transitive imports automatically.
- All three files share the same `go_package = "example.com/demo/pb"`.
- You only need to specify the entry proto file — goctl and protoc handle the rest.