mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
11 lines
128 B
Python
11 lines
128 B
Python
import uwsgi
|
|
|
|
|
|
def hello():
|
|
return "Hello World"
|
|
|
|
print uwsgi.register_rpc("hello", hello)
|
|
|
|
|
|
print uwsgi.rpc(None, "hello")
|