Files
uwsgi/tests/rpc.py
T

11 lines
128 B
Python

import uwsgi
def hello():
return "Hello World"
print uwsgi.register_rpc("hello", hello)
print uwsgi.rpc(None, "hello")