Skip to content

Commit

Permalink
an extreme case
Browse files Browse the repository at this point in the history
  • Loading branch information
Victoria Hall committed Jan 23, 2025
1 parent c19a936 commit a58122c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
app = func.FunctionApp(http_auth_level=func.AuthLevel.ANONYMOUS)


@app.route(route="classic_snake_case", trigger_arg_name="req_snake")
def classic_snake_case(req_snake: func.HttpRequest) -> func.HttpResponse:
name = req_snake.params.get('name')
@app.route(route="classic_snake_case", trigger_arg_name="req_snake_snake_snake_snake")
def classic_snake_case(req_snake_snake_snake_snake: func.HttpRequest) -> func.HttpResponse:
name = req_snake_snake_snake_snake.params.get('name')
return func.HttpResponse(f"Hello, {name}.")

@app.route(route="single_underscore", trigger_arg_name="_")
Expand Down

0 comments on commit a58122c

Please sign in to comment.