Skip to content

Instantly share code, notes, and snippets.

@powerdefy
Last active May 17, 2021 07:35
Show Gist options
  • Save powerdefy/0a0ba7c9a68fc1e7255a80de6b06b3e7 to your computer and use it in GitHub Desktop.
Save powerdefy/0a0ba7c9a68fc1e7255a80de6b06b3e7 to your computer and use it in GitHub Desktop.

NATS RR Protocal (Draft)

Request

fields

  • name: name of the function you want to execute
  • args: arguments of the function
  • kwargs: keyword arguments of the function

example

{
    "name": "is_holiday",
    "args": ["2012-08-07"],
    "kwargs": {"hey": true}
}

Response

  • result: result from the executed function

example

{
    "result": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment