Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catch non void return in route handlers #97

Open
patroza opened this issue Oct 31, 2024 · 0 comments
Open

Catch non void return in route handlers #97

patroza opened this issue Oct 31, 2024 · 0 comments
Labels

Comments

@patroza
Copy link
Member

patroza commented Oct 31, 2024

UpdateUser: success: S.Void (default)

Bad:
UpdateUser: UpdateUser(req => Effect.gen(function*() { return 1 } })
UpdateUser: UpdateUser(req => Effect.gen(function*() { return yield* Effect.succeed(1) } })
UpdateUser: UpdateUser(req => Effect.gen(function*() { return Effect.succeed(1) } })

Good:
UpdateUser: UpdateUser(req => Effect.gen(function*() { } })
UpdateUser: UpdateUser(req => Effect.gen(function*() { console.log("im a bad boy") } })
UpdateUser: UpdateUser(req => Effect.gen(function*() { yield* Effect.success(1) } })
UpdateUser: UpdateUser(req => Effect.gen(function*() { Effect.success(1) } }) :(

@patroza patroza added the routing label Nov 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant