emulator icon indicating copy to clipboard operation
emulator copied to clipboard

Pass functionName and serviceName via function and service object?

Open pmuens opened this issue 7 years ago • 0 comments

functionName and serviceName should be passed in as an object so that we can easily add data later on.

so instead of:

{
  "serviceName": "my-service",
  "functionName": "my-function"
}

we should do:

{
  "service": {
    "name": "my-service"
  },
  "function": {
    "name": "my-function"
  }
}

pmuens avatar Jul 24 '17 15:07 pmuens