jrestless-examples icon indicating copy to clipboard operation
jrestless-examples copied to clipboard

Simplify Endpoint Definition

Open bbilger opened this issue 7 years ago • 0 comments

Change from:

# serverless.yml
functions:
  fnname:
    handler: someHandler
    events:
      - http:
          path: api/{proxy+}
          method: any

to:

# serverless.yml
functions:
  fnname:
    handler: someHandler
    events:
      - http: ANY api/{proxy+}

bbilger avatar Nov 01 '16 23:11 bbilger