Skip to content

Commit b564c70

Browse files
phiatclaude
andcommitted
Fix gofmt struct alignment in parser.go
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a53656b commit b564c70

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

internal/parser/parser.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ type StreamItem struct {
3737

3838
// RawMessage represents a line from the JSONL file
3939
type RawMessage struct {
40-
Type string `json:"type"`
41-
AgentID string `json:"agentId,omitempty"`
42-
SessionID string `json:"sessionId"`
43-
Timestamp string `json:"timestamp"`
44-
Message json.RawMessage `json:"message"`
45-
ToolUseResult json.RawMessage `json:"toolUseResult,omitempty"`
40+
Type string `json:"type"`
41+
AgentID string `json:"agentId,omitempty"`
42+
SessionID string `json:"sessionId"`
43+
Timestamp string `json:"timestamp"`
44+
Message json.RawMessage `json:"message"`
45+
ToolUseResult json.RawMessage `json:"toolUseResult,omitempty"`
4646
}
4747

4848
// RawToolUseResult represents the toolUseResult field on user messages

0 commit comments

Comments
 (0)