MCPcopy Create free account
hub / github.com/MMadmer/EpicAssetsNotifyBot / GuildConfig

Struct GuildConfig

internal/store/sqlite/types.go:11–20  ·  view source on GitHub ↗

GuildConfig mirrors the runtime guild_configs table.

Source from the content-addressed store, hash-verified

9
10// GuildConfig mirrors the runtime guild_configs table.
11type 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.
23type UserProfile struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected