| 16 | } |
| 17 | |
| 18 | type Comment struct { |
| 19 | Id int64 `json:"id,omitempty"` |
| 20 | User User `json:"user"` |
| 21 | Content string `json:"content,omitempty"` |
| 22 | CreateDate string `json:"create_date,omitempty"` |
| 23 | } |
| 24 | |
| 25 | type User struct { |
| 26 | Id int64 `json:"id,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected