1// Package unread contains state structures to synchronize the guild and channel 2// views. 3package unread 4 5import "github.com/diamondburned/arikawa/v3/discord" 6 7// GuildState is the unread state for a guild. 8type GuildState struct { 9 chs map[discord.ChannelID]struct{} 10} 11 12