UserProfile mirrors the user_profiles table.
| 21 | |
| 22 | // UserProfile mirrors the user_profiles table. |
| 23 | type UserProfile struct { |
| 24 | ID int64 `json:"id"` |
| 25 | ShownAssets bool `json:"shown_assets"` |
| 26 | Locale string `json:"locale"` |
| 27 | Subscribed bool `json:"subscribed"` |
| 28 | } |
| 29 | |
| 30 | // Asset mirrors the current_assets table. |
| 31 | type Asset struct { |
nothing calls this directly
no outgoing calls
no test coverage detected