Skip to content

Commit

Permalink
Fix little bug in code
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Sep 2, 2024
1 parent 8d5f2dc commit f35dff8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ We're now ready to implement the signup service.
The signup service has a single handler that orchestrates the signup:

```golang
func (t *signupService) Signup(ctx restate.ObjectSharedContext, newUser NewUser) (string, error) {
func (t *signupService) Signup(ctx restate.Context, newUser NewUser) (string, error) {
// Initialize the newUser first
user := User{
Name: newUser.Name,
Expand Down

0 comments on commit f35dff8

Please sign in to comment.