log-manager/modules/structs/sseclient.go

17 lines
250 B
Go

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
}