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 808d9d0 commit 8fdde4dCopy full SHA for 8fdde4d
docs/flows/11_flow_approval.mdx
@@ -163,6 +163,29 @@ def main():
163
}
164
```
165
166
+</TabItem>
167
+<TabItem value="go" label="Go" attributes={{className: "text-xs p-4 !mt-0 !ml-0"}}>
168
+
169
+```go
170
+package inner
171
172
+import (
173
+ wmill "github.com/windmill-labs/windmill-go-client"
174
+)
175
176
+func main() (map[string]interface{}, error) {
177
+ urls, err := wmill.GetResumeUrls("approver1")
178
+ if err != nil {
179
+ return nil, err
180
+ }
181
+ return map[string]interface{}{
182
+ "resume": urls.Resume,
183
+ "default_args": make(map[string]interface{}), // optional
184
+ "enums": make(map[string]interface{}), // optional
185
+ }, nil
186
+}
187
+```
188
189
</TabItem>
190
</Tabs>
191
0 commit comments