package structs
import (
"github.com/google/uuid"
)
type SSEClient struct {
MessageChannel chan SSEClientChannelMessage
LogType string
Date string
}
type SSEClientChannelMessage struct {
ClientId uuid.UUID
Message []byte