| 106 | } |
| 107 | |
| 108 | type APIDocV2 struct { |
| 109 | DocumentId int `json:"id"` |
| 110 | ParentId int `json:"pid"` |
| 111 | DocumentName string `json:"title"` |
| 112 | Identify string `json:"identify"` |
| 113 | BookId int `json:"book_id"` |
| 114 | BookName string `json:"book_name"` |
| 115 | OrderSort int `json:"sort"` |
| 116 | Release interface{} `json:"content,omitempty"` |
| 117 | CreateTime time.Time `json:"created_at,omitempty"` |
| 118 | MemberId int `json:"uid"` |
| 119 | ModifyTime time.Time `json:"updated_at,omitempty"` |
| 120 | Vcnt int `json:"vcnt"` |
| 121 | Readed bool `json:"readed"` |
| 122 | Bookmark bool `json:"bookmark"` |
| 123 | Links []map[string]string `json:"links"` |
| 124 | Images []string `json:"images"` |
| 125 | Domain string `json:"domain"` |
| 126 | } |
| 127 | |
| 128 | type WechatForm struct { |
| 129 | UserInfo string `form:"userInfo"` |
nothing calls this directly
no outgoing calls
no test coverage detected