12 lines
200 B
Python
Raw Permalink Normal View History

2025-04-09 16:45:41 +00:00
@flowx_block
def example_function(request: dict):
case = request["case"]
switch_dict = {
# Define your cases here
}
variable = switch_dict.get(case, "Invalid option")
return variable