GuildConfig mirrors the runtime guild_configs table.
| 9 | |
| 10 | // GuildConfig mirrors the runtime guild_configs table. |
| 11 | type GuildConfig struct { |
| 12 | GuildID int64 `json:"guild_id"` |
| 13 | ChannelID *int64 `json:"channel_id,omitempty"` |
| 14 | ThreadID *int64 `json:"thread_id,omitempty"` |
| 15 | ShownAssets bool `json:"shown_assets"` |
| 16 | Locale string `json:"locale"` |
| 17 | MentionRoleID *int64 `json:"mention_role_id,omitempty"` |
| 18 | Enabled bool `json:"enabled"` |
| 19 | IncludeImages bool `json:"include_images"` |
| 20 | } |
| 21 | |
| 22 | // UserProfile mirrors the user_profiles table. |
| 23 | type UserProfile struct { |
nothing calls this directly
no outgoing calls
no test coverage detected