| 77 | } |
| 78 | |
| 79 | type APIDoc struct { |
| 80 | DocumentId int `json:"id"` |
| 81 | ParentId int `json:"pid"` |
| 82 | DocumentName string `json:"title"` |
| 83 | Identify string `json:"identify"` |
| 84 | BookId int `json:"book_id"` |
| 85 | BookName string `json:"book_name"` |
| 86 | OrderSort int `json:"sort"` |
| 87 | Release string `json:"content,omitempty"` |
| 88 | CreateTime time.Time `json:"created_at,omitempty"` |
| 89 | MemberId int `json:"uid"` |
| 90 | ModifyTime time.Time `json:"updated_at,omitempty"` |
| 91 | Vcnt int `json:"vcnt"` |
| 92 | Readed bool `json:"readed"` |
| 93 | Bookmark bool `json:"bookmark"` |
| 94 | } |
| 95 | |
| 96 | type UserMoreInfo struct { |
| 97 | MemberId int `json:"uid"` |
nothing calls this directly
no outgoing calls
no test coverage detected