refactor: rename examples/ directory to lib/ and update all path references

This commit is contained in:
2026-07-17 19:21:21 +09:00
parent 8f183d597e
commit 8bb11fe205
17 changed files with 49 additions and 49 deletions
+2 -2
View File
@@ -27,9 +27,9 @@ Go 진영에서 대표적으로 사랑받는 웹 프레임워크 중 하나로,
---
## 3. 실습 코드 분석 (`examples/httpentity/server.go`)
## 3. 실습 코드 분석 (`lib/httpentity/server.go`)
저장소의 [server.go](../examples/httpentity/server.go) 파일에는 Gin 라우터를 구성하고 API 서버와 정적 웹 서빙을 혼합하여 라우팅을 우회 처리하는 설계 패턴이 주석 상태로 존재합니다.
저장소의 [server.go](../lib/httpentity/server.go) 파일에는 Gin 라우터를 구성하고 API 서버와 정적 웹 서빙을 혼합하여 라우팅을 우회 처리하는 설계 패턴이 주석 상태로 존재합니다.
### 3.1 라우터 엔진 분리 및 통합 핸들링
```go