0
Log error Failure
One script reply has been approved by the moderators Verified
Created by admin 575 days ago Viewed 9183 times
0
Submitted by admin Deno
Verified 575 days ago
1
export async function main(message: string, name: string) {
2
  const flow_id = Deno.env.get("WM_FLOW_JOB_ID");
3
  console.log("message", message);
4
  console.log("name", name);
5
  return { message, flow_id };
6
}
7