We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3019d2e commit b85ee34Copy full SHA for b85ee34
commands_v1.go
@@ -50,8 +50,7 @@ func (c *CommandsV1Controller) Exec(ctx *app.ExecCommandsV1Context) error {
50
// Put your logic here
51
52
// CommandsV1Controller_Exec: end_implement
53
- res := &app.ArduinoAgentExec{}
54
- return ctx.OK(res)
+ return ctx.Accepted()
55
}
56
57
// List runs the list action.
upload_v1.go
@@ -60,6 +60,6 @@ func (c *UploadV1Controller) Show(ctx *app.ShowUploadV1Context) error {
60
61
62
// UploadV1Controller_Show: end_implement
63
- res := &app.ArduinoAgentCommand{}
+ res := &app.ArduinoAgentExec{}
64
return ctx.OK(res)
65
0 commit comments