윤준석

FIX: Item model field

add ThumbnailUrl and ItemUrl
...@@ -4,6 +4,7 @@ type Item struct { ...@@ -4,6 +4,7 @@ type Item struct {
4 Platform string `json:"platform"` 4 Platform string `json:"platform"`
5 Name string `json:"name"` 5 Name string `json:"name"`
6 Price uint `json:"price"` 6 Price uint `json:"price"`
7 - Url string `json:"url"` 7 + ThumbnailUrl string `json:"thumbnailUrl"`
8 + ItemUrl string `json:"itemUrl"`
8 ExtraInfo string `json:"extraInfo"` 9 ExtraInfo string `json:"extraInfo"`
9 } 10 }
......