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
@@ -21,9 +21,9 @@ Go 구조체로 JSON 데이터를 다룰 때 핵심적인 과정입니다.
---
## 2. 실습 코드 분석 (`examples/jsonexample/json_parser.go`)
## 2. 실습 코드 분석 (`lib/jsonexample/json_parser.go`)
저장소의 [json_parser.go](../examples/jsonexample/json_parser.go) 파일은 (1) `map[string]interface{}`와의 직렬화 및 (2) 구조체(`Person`)를 이용한 매핑 방식을 모두 다룹니다.
저장소의 [json_parser.go](../lib/jsonexample/json_parser.go) 파일은 (1) `map[string]interface{}`와의 직렬화 및 (2) 구조체(`Person`)를 이용한 매핑 방식을 모두 다룹니다.
### 2.1 구조체 태그(Struct Tag) 정의
```go