| 58 | } |
| 59 | |
| 60 | type Error struct { |
| 61 | Error struct { |
| 62 | Errors []struct { |
| 63 | Domain string `json:"domain"` |
| 64 | Reason string `json:"reason"` |
| 65 | Message string `json:"message"` |
| 66 | LocationType string `json:"location_type"` |
| 67 | Location string `json:"location"` |
| 68 | } |
| 69 | Code int `json:"code"` |
| 70 | Message string `json:"message"` |
| 71 | } `json:"error"` |
| 72 | } |
| 73 | |
| 74 | func fileToObj(f File) *model.ObjThumb { |
| 75 | logger.Info("dropbox file", zap.Any("file", f)) |
nothing calls this directly
no outgoing calls
no test coverage detected