9 lines
265 B
Go
9 lines
265 B
Go
package domain
|
|
|
|
type SSEEvent struct {
|
|
Type string `json:"type"`
|
|
Content string `json:"content"`
|
|
ChunkResult *NodeContentChunkSSE `json:"chunk_result,omitempty"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|