mid day commit

This commit is contained in:
2025-12-08 13:31:47 +01:00
parent e045d0d01f
commit 06c17cc2e9
7 changed files with 245 additions and 8 deletions

13
relay/storage/structs.go Normal file
View File

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