Skip to content

Commit

Permalink
Merge pull request #13 from windmill-labs/wm_deploy/f__examples__hell…
Browse files Browse the repository at this point in the history
…o_world_deno

Script 'f/examples/hello_world_deno' deployed
  • Loading branch information
gbouv authored Jan 6, 2024
2 parents 05437c8 + 76b5837 commit bacdd66
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions f/examples/hello_world_deno.script.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
summary: Hello World in Deno
description: ''
lock: []
lock:
- '{'
- ' "version": "3",'
- ' "remote": {}'
- '}'
is_template: false
kind: script
restart_unless_cancelled: false
Expand All @@ -18,7 +22,7 @@ schema:
description: ''
default: null
enum:
- Hello World
- Hello World!
- Welcome
required:
- union
2 changes: 1 addition & 1 deletion f/examples/hello_world_deno.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export async function main(
union: "Hello World" | "Welcome",
union: "Hello World!" | "Welcome",
str = "default arg",
) {
return { union, str };
Expand Down

0 comments on commit bacdd66

Please sign in to comment.