Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
diamondburned
GitHub Repository: diamondburned/gtkcord4
Path: blob/main/internal/sidebar/unread/unread.go
366 views
1
// Package unread contains state structures to synchronize the guild and channel
2
// views.
3
package unread
4
5
import "github.com/diamondburned/arikawa/v3/discord"
6
7
// GuildState is the unread state for a guild.
8
type GuildState struct {
9
chs map[discord.ChannelID]struct{}
10
}
11
12