You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And support array result for sequence action as well, the first action's array result can be used as next action's input parameter.
81
+
82
+
So the function can be:
83
+
84
+
```go
85
+
package main
86
+
87
+
// Main is the function implementing the action
88
+
funcMain(obj []interface{}) []interface{} {
89
+
return obj
90
+
}
91
+
```
92
+
66
93
You can also have multiple source files in an action, packages and vendor folders. Check the [deployment](DEPLOY.md) document for more details how to package and deploy actions.
0 commit comments