Files
YouduWiki/backend/domain/sse_event.go
2026-05-21 19:52:45 +08:00

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"`
}