Make Any TypeScript Function Durable

https://news.ycombinator.com/rss Hits: 8
Summary

export async function welcome(userId: string) { "use workflow"; const user = await getUser(userId); const { subject, body } = await generateEmail({ name: user.name, plan: user.plan }); const { status } = await sendEmail({ to: user.email, subject, body, }); return { status, subject, body }; }

First seen: 2025-10-23 18:32

Last seen: 2025-10-24 01:34