package structs import "github.com/google/uuid" type SSEClient struct { MessageChan chan SSEClientChanMessage } type SSEClientChanMessage struct { ClientId uuid.UUID Message string }