refactor: relocate protoapi stub files to examples/grpcentity/protoapi

This commit is contained in:
2026-07-17 16:37:06 +09:00
parent 5408a70118
commit 044f0e4d42
6 changed files with 611 additions and 7 deletions
+2 -2
View File
@@ -25,13 +25,13 @@
grpccanary/
├── README.md # 본 프로젝트 종합 소개 및 실행 가이드 (교육용)
├── go.mod / go.sum # Go 모듈 의존성 정의 (Go 1.25.4+)
├── protoapi/ # protoc로 컴파일 생성된 Go Stub 코드
├── examples/
│ ├── main.go # 학습 예제 통합 실행 진입점 (수동 전환)
│ ├── jsonexample/ # 1단계: JSON 데이터 다루기 실습 예제
│ ├── httpentity/ # 2단계: HTTP & Gin 웹 서버 실습 예제 (WIP)
│ └── grpcentity/ # 3단계: gRPC 통신 구현 실습 예제 (서버/클라이언트 데모)
── protoapi.proto # gRPC 인터페이스 정의서 (IDL)
── protoapi.proto # gRPC 인터페이스 정의서 (IDL)
│ └── protoapi/ # protoc로 컴파일 생성된 Go Stub 코드
└── docs/
├── MANUSCRIPT.md # 학습 로드맵 및 각 단계별 심화 가이드로의 안내서
├── JSON.md # 1단계: JSON 데이터 다루기 상세 가이드