(stub: MyAppDO)
| 41 | } |
| 42 | |
| 43 | function listPostsEffect(stub: MyAppDO) { |
| 44 | return Effect.tryPromise({ |
| 45 | try: () => stub.listPosts(), |
| 46 | catch: (error: unknown) => new Error(`Failed to list posts: ${error}`) |
| 47 | }); |
| 48 | } |
| 49 | |
| 50 | function authEffect(stub: MyAppDO) { |
| 51 | const signupEffect = Effect.tryPromise({ |