Files
2012-03-07 15:06:38 +01:00

11 lines
128 B
Python

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