14 lines
195 B
Go
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"`
|
|
}
|