log-manager/modules/structs/sseclient.go

15 lines
245 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
}