Skip to content

Instantly share code, notes, and snippets.

@mattbennett
Last active June 16, 2016 18:09
Show Gist options
  • Save mattbennett/3663cd6a84a8ad63d2e71163ca2b00bc to your computer and use it in GitHub Desktop.
Save mattbennett/3663cd6a84a8ad63d2e71163ca2b00bc to your computer and use it in GitHub Desktop.
nameko rpc hello world
from nameko.rpc import rpc
class HelloService(object):
name = "hello"
@rpc
def hello(self, name):
return "Hello, {}!".format(name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment