Files
HomesteadToGo/relay/storage/structs.go
2025-12-08 13:31:47 +01:00

14 lines
195 B
Go

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