package storage import ( "sync" "github.com/disgoorg/snowflake/v2" ) type ChannelStorage struct { mutex sync.RWMutex filename string Channels map[snowflake.ID]bool `json:"channels"` }