address comments

This commit is contained in:
Shreyas Goenka 2025-02-03 13:41:21 +01:00
parent f3e7594f39
commit 403f61228d
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
15 changed files with 2 additions and 0 deletions

View File

@ -24,9 +24,11 @@ type ExecutionContext struct {
FromWebTerminal bool `json:"from_web_terminal,omitempty"`
// Time taken for the CLI command to execute.
// We want to serialize the zero value as well so the omitempty tag is not set.
ExecutionTimeMs int64 `json:"execution_time_ms"`
// Exit code of the CLI command.
// We want to serialize the zero value as well so the omitempty tag is not set.
ExitCode int64 `json:"exit_code"`
}