We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba1a33 commit 1e54d52Copy full SHA for 1e54d52
example/joe.py
@@ -37,10 +37,11 @@ def hi(ctx: Context) -> Value:
37
38
@actor.action("setLanguage")
39
def set_language(request: Request, ctx: Context) -> Value:
40
+ print("Request -> " + str(request))
41
print("Current State -> " + str(ctx.state))
42
43
reply = Reply()
44
reply.response = "erlang"
45
new_state = State()
- new_state.languages.append("python")
46
+ new_state.languages.append("erlang")
47
return Value().response(reply).state(new_state).reply()
0 commit comments