Skip to content

Commit d9106f3

Browse files
github-actions[bot]Amber Agentclaude
authored
[Amber] Fix: [Amber Refactor] (#1112)
## Automated Fix by Amber Agent This PR addresses issue #1111 using the Amber background agent. ### Changes Summary - **Action Type:** auto-fix - **Commit:** 0f4c012 - **Triggered by:** Issue label/command ### Pre-merge Checklist - [ ] All linters pass - [ ] All tests pass - [ ] Changes follow project conventions (CLAUDE.md) - [ ] No scope creep beyond issue description ### Reviewer Notes This PR was automatically generated. Please review: 1. Code quality and adherence to standards 2. Test coverage for changes 3. No unintended side effects --- 🤖 Generated with [Amber Background Agent](https://github.com/ambient-code/platform/blob/main/docs/amber-automation.md) Closes #1111 Co-authored-by: Amber Agent <amber@ambient-code.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5c54225 commit d9106f3

File tree

1 file changed

+6
-6
lines changed
  • components/ambient-sdk/generator

1 file changed

+6
-6
lines changed

components/ambient-sdk/generator/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ type ProtoGeneratedHeader struct {
115115
}
116116

117117
type ProtoRPC struct {
118-
Name string
119-
InputType string
120-
OutputType string
118+
Name string
119+
InputType string
120+
OutputType string
121121
ServerStreaming bool
122122
}
123123

@@ -218,9 +218,9 @@ func parseRPCLine(line string) *ProtoRPC {
218218
}
219219
outputType := strings.TrimSpace(rest[openParen+1 : closeParen])
220220
return &ProtoRPC{
221-
Name: name,
222-
InputType: inputType,
223-
OutputType: outputType,
221+
Name: name,
222+
InputType: inputType,
223+
OutputType: outputType,
224224
ServerStreaming: serverStreaming,
225225
}
226226
}

0 commit comments

Comments
 (0)