ServerSentEventsServer/modules/cache/cache.go

9 lines
167 B
Go

package cache
import (
"clickandjoin.app/serversenteventsserver/modules/structs"
"github.com/google/uuid"
)
var SSEClients = make(map[uuid.UUID]structs.SSEClient)